diff options
author | slakmagik <jsun@freeshell.org> | 2010-05-13 00:22:05 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:22:05 +0200 |
commit | 9dc22a871eb48492110ca9c51457dcdb701bf48d (patch) | |
tree | 1ff901c1ba7d63e79da9a04d2cc0b5a239ee3d4c /audio/shntool/shntool.SlackBuild | |
parent | 1234a538be3a22053b9959263dee4c10ec66512c (diff) |
audio/shntool: Updated for version 3.0.10
Diffstat (limited to 'audio/shntool/shntool.SlackBuild')
-rw-r--r-- | audio/shntool/shntool.SlackBuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/audio/shntool/shntool.SlackBuild b/audio/shntool/shntool.SlackBuild index dc2199eb4530..c7293605cf2d 100644 --- a/audio/shntool/shntool.SlackBuild +++ b/audio/shntool/shntool.SlackBuild @@ -5,9 +5,9 @@ # Released under the WTFPL PRGNAM=shntool -VERSION=${VERSION:-3.0.8} +VERSION=${VERSION:-3.0.10} ARCH=${ARCH:-i486} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -17,10 +17,13 @@ OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" fi set -e @@ -65,4 +68,4 @@ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |