summaryrefslogtreecommitdiffstats
path: root/icon
diff options
context:
space:
mode:
authorGuilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com>2021-09-23 04:17:52 +0200
committerGitHub <noreply@github.com>2021-09-23 04:17:52 +0200
commitde9a285ff2d1d31e87a70003588595e443c7fabd (patch)
tree0c68e943e9ca60ba45687e44af999c524d7a7dc0 /icon
parent9e22f32c07db0b3b2d72fb252872c9f7bc7141e3 (diff)
downloadnsxiv-de9a285ff2d1d31e87a70003588595e443c7fabd.tar.zst
Add desktop and icon rules to Makefile, document icon installation (#80)
Co-authored-by: NRK <nrk@disroot.org>
Diffstat (limited to 'icon')
-rw-r--r--icon/Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/icon/Makefile b/icon/Makefile
deleted file mode 100644
index f660cc5..0000000
--- a/icon/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-PREFIX = /usr/local
-ICONS = 16x16.png 32x32.png 48x48.png 64x64.png 128x128.png
-
-all:
-
-install:
- for f in $(ICONS); do \
- dir="$(DESTDIR)$(PREFIX)/share/icons/hicolor/$${f%.png}/apps"; \
- mkdir -p "$$dir"; \
- cp "$$f" "$$dir/nsxiv.png"; \
- chmod 644 "$$dir/nsxiv.png"; \
- done