diff options
author | Ross Burton <ross@openedhand.com> | 2007-04-13 15:46:16 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-04-13 15:46:16 +0000 |
commit | b1e9b60389a9a0ebfcb51edbb084c8e72eb8cf11 (patch) | |
tree | 1dee7d57c2d14bae380852b2412fa58820838643 | |
parent | 98553f40911c712b3e54da5fdd65173fc2e8243b (diff) | |
download | poky-b1e9b60389a9a0ebfcb51edbb084c8e72eb8cf11.tar.gz |
Update the icon cache on install
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1506 311d38ba-8fff-0310-9ca6-ca027cbcb966
-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" | |||
3 | LICENSE = "LGPL" | 3 | LICENSE = "LGPL" |
4 | DEPENDS = "" | 4 | DEPENDS = "" |
5 | PV = "0.0+svn${SRCDATE}" | 5 | PV = "0.0+svn${SRCDATE}" |
6 | PR = "r2" | 6 | PR = "r3" |
7 | 7 | ||
8 | SRC_URI = "svn://svn.o-hand.com/repos/sato/trunk;module=sato-icon-theme;proto=http" | 8 | SRC_URI = "svn://svn.o-hand.com/repos/sato/trunk;module=sato-icon-theme;proto=http" |
9 | S = "${WORKDIR}/sato-icon-theme" | 9 | S = "${WORKDIR}/sato-icon-theme" |
10 | 10 | ||
11 | inherit autotools pkgconfig | 11 | inherit autotools pkgconfig |
12 | 12 | ||
13 | FILES_${PN} += "${datadir}" | 13 | FILES_${PN} += "${datadir}" |
14 | |||
15 | pkg_postinst_${PN} () { | ||
16 | if [ "x$D" != "x" ]; then | ||
17 | exit 1 | ||
18 | fi | ||
19 | gtk-update-icon-cache -q /usr/share/icons/Sato | ||
20 | } | ||