diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-27 20:53:45 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-29 17:17:37 -0500 |
commit | 7db9400097496f55202a8c8202d25990aede2cf3 (patch) | |
tree | 545616c4959f6390ac6a3198b5c52b3afa2ec103 /audio/qjackctl | |
parent | ef9971fac93615e6ec1c70a4719f7ef7e16539fe (diff) |
audio/qjackctl: Fixed (Compress man pages and handle icons)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/qjackctl')
-rw-r--r-- | audio/qjackctl/doinst.sh | 8 | ||||
-rw-r--r-- | audio/qjackctl/qjackctl.SlackBuild | 7 |
2 files changed, 12 insertions, 3 deletions
diff --git a/audio/qjackctl/doinst.sh b/audio/qjackctl/doinst.sh index 3857649f506a..3e5691a052b5 100644 --- a/audio/qjackctl/doinst.sh +++ b/audio/qjackctl/doinst.sh @@ -1,3 +1,9 @@ if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications &> /dev/null + /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/qjackctl/qjackctl.SlackBuild b/audio/qjackctl/qjackctl.SlackBuild index 97f37e908e48..f78eb5b0d7a5 100644 --- a/audio/qjackctl/qjackctl.SlackBuild +++ b/audio/qjackctl/qjackctl.SlackBuild @@ -91,8 +91,11 @@ CFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -find $PKG | xargs file | egrep "ELF.*executable" | cut -f 1 -d : \ - | xargs strip --strip-unneeded 2> /dev/null +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done # Make sure we have a standard-compliant desktop file cat $CWD/qjackctl.desktop > $PKG/usr/share/applications/qjackctl.desktop |