summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author dsomero2012-09-30 17:24:09 +0200
committer Robby Workman2012-10-01 03:01:08 +0200
commita6228efd983df78d33357d5c3ed34bf96d832552 (patch)
treee876003f6b0797c4c1de7cd37bd63ca75d9e45b5
parent4871323cc13042a9c3f85e3fef60cea139e754a8 (diff)
downloadslackbuilds-a6228efd983df78d33357d5c3ed34bf96d832552.tar.gz
network/sparkleshare: Fixed (Handle desktop and icon files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
-rw-r--r--network/sparkleshare/doinst.sh9
-rw-r--r--network/sparkleshare/sparkleshare.SlackBuild3
2 files changed, 11 insertions, 1 deletions
diff --git a/network/sparkleshare/doinst.sh b/network/sparkleshare/doinst.sh
new file mode 100644
index 0000000000..3e5691a052
--- /dev/null
+++ b/network/sparkleshare/doinst.sh
@@ -0,0 +1,9 @@
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database -q usr/share/applications >/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/network/sparkleshare/sparkleshare.SlackBuild b/network/sparkleshare/sparkleshare.SlackBuild
index 9e8498f5ab..582976dd8f 100644
--- a/network/sparkleshare/sparkleshare.SlackBuild
+++ b/network/sparkleshare/sparkleshare.SlackBuild
@@ -24,7 +24,7 @@
PRGNAM=sparkleshare
VERSION=${VERSION:-0.9.0}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -90,6 +90,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}