diff options
author | Mikko Värri <vmj@linuxbox.fi> | 2010-08-15 19:01:15 -0400 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-08-15 20:53:42 -0500 |
commit | 3dcc23471f4f92ab19aa4bc537adfd932c0aa3c9 (patch) | |
tree | 7e4bdab1aef437bae55dcbdd5aa2ed2034d16963 /desktop/bashrun/bashrun.SlackBuild | |
parent | 2f26f79743ce666550de8fef22b319762f16a1a2 (diff) |
desktop/bashrun: Updated for version 0.16.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/bashrun/bashrun.SlackBuild')
-rw-r--r-- | desktop/bashrun/bashrun.SlackBuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/desktop/bashrun/bashrun.SlackBuild b/desktop/bashrun/bashrun.SlackBuild index c9e84e2f9ea9..8c9801bb8744 100644 --- a/desktop/bashrun/bashrun.SlackBuild +++ b/desktop/bashrun/bashrun.SlackBuild @@ -2,11 +2,11 @@ # Slackware build script for bashrun -# Written by Mikko Varri (vmj@linuxbox.fi) +# Written by Mikko Värri (vmj@linuxbox.fi) # Public domain. PRGNAM=bashrun -VERSION=${VERSION:-0.15} +VERSION=${VERSION:-0.16} ARCH=noarch BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -34,10 +34,8 @@ find . \ bash ./install.sh --prefix=$PKG/usr mv $PKG/usr/share/man $PKG/usr/man -( 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 CHANGELOG COPYING INSTALL $PKG/usr/doc/$PRGNAM-$VERSION |