From ad44a9435459189ec7ba573de317f3738033ddd0 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sun, 1 Jun 2008 21:57:27 +0200 Subject: [PATCH] Install scalable icon with autotools --- Makefile.am | 2 +- configure.in | 3 ++- data/Makefile.am | 17 +++++++++++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 data/Makefile.am diff --git a/Makefile.am b/Makefile.am index 3f505e28..d8b5d3a9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ AUTOMAKE_OPTIONS = gnu -SUBDIRS = katze src po +SUBDIRS = katze src po data desktopdir = $(datadir)/applications desktop_in_files = midori.desktop diff --git a/configure.in b/configure.in index c21df45a..784509be 100644 --- a/configure.in +++ b/configure.in @@ -102,7 +102,8 @@ AC_CONFIG_FILES([ Makefile \ katze/Makefile \ src/Makefile \ - po/Makefile.in + po/Makefile.in \ + data/Makefile ]) AC_OUTPUT diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100644 index 00000000..6341bfc8 --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1,17 @@ +iconsdir = $(datadir)/icons/hicolor/scalable/apps +icons_DATA = midori.svg + +EXTRA_DIST = $(icons_DATA) + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor + +install-data-hook: update-icon-cache +uninstall-hook: update-icon-cache +update-icon-cache: + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. After (un)install, run this:"; \ + echo "*** $(gtk_update_icon_cache)"; \ + fi