summaryrefslogtreecommitdiffstats
path: root/desktop/emerald
diff options
context:
space:
mode:
author dsomero2012-09-28 04:56:01 +0200
committer Robby Workman2012-09-30 00:17:39 +0200
commit08523c783135150e372a4a9b49b2b81863f23323 (patch)
tree1db56a5890564db93b6e49cd05c5e9cdbdb1ab2e /desktop/emerald
parent8ff8d4c256594e2210d4aea8af459fcec53984e7 (diff)
downloadslackbuilds-08523c783135150e372a4a9b49b2b81863f23323.tar.gz
desktop/emerald: Fixed (Handle desktop, mime, and icon files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/emerald')
-rw-r--r--desktop/emerald/doinst.sh13
-rw-r--r--desktop/emerald/emerald.SlackBuild3
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}