diff options
author | Paul Drain <pd@cipherfunk.org> | 2006-04-12 02:58:34 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-04-12 02:58:34 +0800 |
commit | 3e6b64aab649dc5f4c9614d462f6293aed5098dd (patch) | |
tree | e01ae91d50c8a05c20b055d5e7afdd9a92dc25a7 /data/art/Makefile.am | |
parent | 811f46ca79796425fb283e622cc13fa1c9e1980a (diff) | |
download | gsoc2013-epiphany-3e6b64aab649dc5f4c9614d462f6293aed5098dd.tar gsoc2013-epiphany-3e6b64aab649dc5f4c9614d462f6293aed5098dd.tar.gz gsoc2013-epiphany-3e6b64aab649dc5f4c9614d462f6293aed5098dd.tar.bz2 gsoc2013-epiphany-3e6b64aab649dc5f4c9614d462f6293aed5098dd.tar.lz gsoc2013-epiphany-3e6b64aab649dc5f4c9614d462f6293aed5098dd.tar.xz gsoc2013-epiphany-3e6b64aab649dc5f4c9614d462f6293aed5098dd.tar.zst gsoc2013-epiphany-3e6b64aab649dc5f4c9614d462f6293aed5098dd.zip |
Install App-Friendly Theme Icons (GNOME Goal Two)
2006-04-10 Paul Drain <pd@cipherfunk.org>
* data/art/Makefile.am:
* data/bme-desktop.in.in:
* data/epiphany-desktop.in.in:
Install App-Friendly Theme Icons (GNOME Goal Two)
Diffstat (limited to 'data/art/Makefile.am')
-rw-r--r-- | data/art/Makefile.am | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/data/art/Makefile.am b/data/art/Makefile.am index 24a6892a5..1e4af4dc8 100644 --- a/data/art/Makefile.am +++ b/data/art/Makefile.am @@ -6,8 +6,19 @@ art_DATA = \ epiphany-bookmarks.png appicon_DATA = epiphany-bookmarks.png -appicondir = $(datadir)/pixmaps +appicondir = $(datadir)/icons/hicolor/48x48/apps artdir = $(pkgdatadir)/art +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. After install, run this:"; \ + echo "*** $(gtk_update_icon_cache)"; \ + fi + EXTRA_DIST = $(appicon_DATA) $(art_DATA) |