diff options
-rw-r--r-- | meta/packages/sato-icon-theme/sato-icon-theme_svn.bb | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/meta/packages/sato-icon-theme/sato-icon-theme_svn.bb b/meta/packages/sato-icon-theme/sato-icon-theme_svn.bb index 683ec11773..5658b7ba3d 100644 --- a/meta/packages/sato-icon-theme/sato-icon-theme_svn.bb +++ b/meta/packages/sato-icon-theme/sato-icon-theme_svn.bb @@ -3,11 +3,18 @@ DESCRIPTION = "Sato Icon Theme" LICENSE = "LGPL" DEPENDS = "" PV = "0.0+svn${SRCDATE}" -PR = "r2" +PR = "r3" SRC_URI = "svn://svn.o-hand.com/repos/sato/trunk;module=sato-icon-theme;proto=http" S = "${WORKDIR}/sato-icon-theme" -inherit autotools pkgconfig +inherit autotools pkgconfig FILES_${PN} += "${datadir}" + +pkg_postinst_${PN} () { + if [ "x$D" != "x" ]; then + exit 1 + fi + gtk-update-icon-cache -q /usr/share/icons/Sato +} |