diff options
Diffstat (limited to 'source/ap/vorbis-tools/vorbis-tools.SlackBuild')
-rwxr-xr-x | source/ap/vorbis-tools/vorbis-tools.SlackBuild | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/source/ap/vorbis-tools/vorbis-tools.SlackBuild b/source/ap/vorbis-tools/vorbis-tools.SlackBuild index 65c551a8..4e0534c6 100755 --- a/source/ap/vorbis-tools/vorbis-tools.SlackBuild +++ b/source/ap/vorbis-tools/vorbis-tools.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2010 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -21,11 +21,21 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=1.2.0 -ARCH=${ARCH:-x86_64} -NUMJOBS=${NUMJOBS:-" -j7 "} +VERSION=1.4.0 BUILD=${BUILD:-1} +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) export ARCH=i486 ;; + arm*) export ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) export ARCH=$( uname -m ) ;; + esac +fi + +NUMJOBS=${NUMJOBS:-" -j7 "} + CWD=$(pwd) TMP=${TMP:-/tmp} PKG=$TMP/package-vorbis-tools @@ -35,7 +45,7 @@ mkdir -p $TMP $PKG cd $TMP rm -rf vorbis-tools-$VERSION -tar xvf $CWD/vorbis-tools-$VERSION.tar.bz2 || exit 1 +tar xvf $CWD/vorbis-tools-$VERSION.tar.?z* || exit 1 cd vorbis-tools-$VERSION || exit 1 chown -R root:root . find . \ |