diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2011-03-25 23:59:20 +0100 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-25 23:26:38 -0500 |
commit | edaa1fefd46c2bd3f9c85f66fb857319dbe707c2 (patch) | |
tree | 35c0efdbc92089c32879708346d73245d7ee13b4 /audio/twolame/twolame.SlackBuild | |
parent | 660d88be358d7dd34da4595c3c41e686277cdf3d (diff) | |
download | slackbuilds-edaa1fefd46c2bd3f9c85f66fb857319dbe707c2.tar.gz |
audio/twolame: Updated for version 0.3.13
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
Diffstat (limited to 'audio/twolame/twolame.SlackBuild')
-rw-r--r-- | audio/twolame/twolame.SlackBuild | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/audio/twolame/twolame.SlackBuild b/audio/twolame/twolame.SlackBuild index e22eb21126..c01cf54a1d 100644 --- a/audio/twolame/twolame.SlackBuild +++ b/audio/twolame/twolame.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for twolame -# Copyright 2007-2008 Heinz Wiesinger <hmwiesinger@gmx.at> +# Copyright 2007-2011 Heinz Wiesinger, Amsterdam, The Netherlands # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,16 +23,14 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=twolame -VERSION=0.3.12 +VERSION=0.3.13 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -84,11 +82,7 @@ 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 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION mv $PKG/usr/share/doc/twolame/* $PKG/usr/doc/$PRGNAM-$VERSION/ |