diff options
author | David Woodfall <dave@dawoodfall.net> | 2010-06-15 04:43:40 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-06-15 04:43:40 -0500 |
commit | 83be308a0032d73ad5d436bf8bf03191393d3955 (patch) | |
tree | 7e226413f53901b44ed86c33257bfdd4a2beef2d /audio/shell-fm/shell-fm.SlackBuild | |
parent | 4cdcb6757a083f51073cf163a9601c274fcfafa7 (diff) | |
download | slackbuilds-83be308a0032d73ad5d436bf8bf03191393d3955.tar.gz |
audio/shell-fm: Updated for version git20100614.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'audio/shell-fm/shell-fm.SlackBuild')
-rw-r--r-- | audio/shell-fm/shell-fm.SlackBuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/audio/shell-fm/shell-fm.SlackBuild b/audio/shell-fm/shell-fm.SlackBuild index 0e35431bc1..b8ed9d277d 100644 --- a/audio/shell-fm/shell-fm.SlackBuild +++ b/audio/shell-fm/shell-fm.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for shell-fm -# Copyright 2009 David Woodfall <info@davidwoodfall.co.uk> +# Copyright 2009 David Woodfall <dave@dawoodfall.net> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=shell-fm -VERSION=${VERSION:-git20100226} +VERSION=${VERSION:-git20100614} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -78,10 +78,8 @@ make install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a INSTALL AUTHORS RELEASE \ |