diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:40 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:40 -0400 |
commit | 055bc8879fabb68248893e6320e3783a62e96a57 (patch) | |
tree | 6fe78ed917c3af5a535f2cc34df69025d182aa94 /audio | |
parent | 73dab525f78d66100313368297ff8705f4ed175b (diff) | |
download | slackbuilds-055bc8879fabb68248893e6320e3783a62e96a57.tar.gz |
audio/streamripper: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/streamripper/streamripper.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/audio/streamripper/streamripper.SlackBuild b/audio/streamripper/streamripper.SlackBuild index 559c184288..5cd2a5bbe2 100644 --- a/audio/streamripper/streamripper.SlackBuild +++ b/audio/streamripper/streamripper.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=streamripper VERSION=${VERSION:-1.64.6} -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 @@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |