diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-27 21:21:19 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-29 17:17:38 -0500 |
commit | c99dae128b1f8b99b568bbf3afcc46cb1fa20b1f (patch) | |
tree | 4e4ea2c20b5e51775ee790a0f625fcd8f0f454a2 /audio/volwheel | |
parent | b9c375aeb5f074d6659a28d80189d3177d21a0dd (diff) | |
download | slackbuilds-c99dae128b1f8b99b568bbf3afcc46cb1fa20b1f.tar.gz |
audio/volwheel: Fixed (Handle desktop and icon files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/volwheel')
-rw-r--r-- | audio/volwheel/doinst.sh | 9 | ||||
-rw-r--r-- | audio/volwheel/volwheel.SlackBuild | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/audio/volwheel/doinst.sh b/audio/volwheel/doinst.sh new file mode 100644 index 0000000000..3e5691a052 --- /dev/null +++ b/audio/volwheel/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/audio/volwheel/volwheel.SlackBuild b/audio/volwheel/volwheel.SlackBuild index 14ab5fdfff..5ad3b572dc 100644 --- a/audio/volwheel/volwheel.SlackBuild +++ b/audio/volwheel/volwheel.SlackBuild @@ -22,7 +22,7 @@ PRGNAM=volwheel VERSION=${VERSION:-0.2.8} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} ARCH=noarch @@ -70,6 +70,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} |