Adds app icon at 24px, 32px, 64px, 96px. This should give a cleaner look in system menus like App Finder, Whisker Menu. Removes export path strings from SVGs, metadata which Inkscape added on export. Note: Inkscape has recently changed this to use relative paths so it shouldn't be an issue in the future.
18 lines
500 B
Makefile
18 lines
500 B
Makefile
SUBDIRS = 16x16 24x24 32x32 48x48 64x64 96x96 128x128 scalable
|
|
|
|
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
|
|
|
|
install-data-hook:
|
|
@-if test -z "$(DESTDIR)"; then \
|
|
echo "Updating Gtk icon cache."; \
|
|
$(gtk_update_icon_cache); \
|
|
else \
|
|
echo "*** Icon cache not updated. Remember to run:"; \
|
|
echo "***"; \
|
|
echo "*** $(gtk_update_icon_cache)"; \
|
|
echo "***"; \
|
|
fi
|
|
|
|
uninstall-local:
|
|
-rm $(datadir)/icons/hicolor/icon-theme.cache
|