diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:35 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:35 -0400 |
commit | a5a0a90520fd61379b250a228831d7276bf44b6e (patch) | |
tree | f800cbfe57c408fc7400a1c23f10d1dff7cfed38 /audio/sfarkxtc | |
parent | 5b29f5e8652f237c74e4aa60028925538d378b30 (diff) | |
download | slackbuilds-a5a0a90520fd61379b250a228831d7276bf44b6e.tar.gz |
audio/sfarkxtc: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/sfarkxtc')
-rw-r--r-- | audio/sfarkxtc/sfarkxtc.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/audio/sfarkxtc/sfarkxtc.SlackBuild b/audio/sfarkxtc/sfarkxtc.SlackBuild index e551dc3e9a..c6f15f285c 100644 --- a/audio/sfarkxtc/sfarkxtc.SlackBuild +++ b/audio/sfarkxtc/sfarkxtc.SlackBuild @@ -4,10 +4,19 @@ PRGNAM=sfarkxtc VERSION=20070326 -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 |