diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:08:46 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:08:46 -0400 |
commit | 4e85a0cfc854d4d83e064ff93b0660f713557e32 (patch) | |
tree | 0376b0c2f90511db8894c97a97a70a9e92138223 /libraries/libshout | |
parent | 4c20ffaa29bf57dfa25635f37a25edc03a18bb05 (diff) | |
download | slackbuilds-4e85a0cfc854d4d83e064ff93b0660f713557e32.tar.gz slackbuilds-4e85a0cfc854d4d83e064ff93b0660f713557e32.tar.xz |
libraries/libshout: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/libshout')
-rw-r--r-- | libraries/libshout/libshout.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/libshout/libshout.SlackBuild b/libraries/libshout/libshout.SlackBuild index 18744cbb8c9..2a15e07024d 100644 --- a/libraries/libshout/libshout.SlackBuild +++ b/libraries/libshout/libshout.SlackBuild @@ -7,10 +7,19 @@ PRGNAM=libshout VERSION=${VERSION:-2.2.2} -ARCH=${ARCH:-i486} 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 + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -25,6 +34,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e # Exit on most errors |