diff options
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/emerald/doinst.sh | 13 | ||||
-rw-r--r-- | desktop/emerald/emerald.SlackBuild | 3 |
2 files changed, 15 insertions, 1 deletions
diff --git a/desktop/emerald/doinst.sh b/desktop/emerald/doinst.sh new file mode 100644 index 0000000000..9424ce43ff --- /dev/null +++ b/desktop/emerald/doinst.sh @@ -0,0 +1,13 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/desktop/emerald/emerald.SlackBuild b/desktop/emerald/emerald.SlackBuild index c0508482bf..e0c644841e 100644 --- a/desktop/emerald/emerald.SlackBuild +++ b/desktop/emerald/emerald.SlackBuild @@ -6,7 +6,7 @@ PRGNAM=emerald VERSION=${VERSION:-0.8.8} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -86,6 +86,7 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |