diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:22 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:22 -0400 |
commit | a6fc14b0f2eba4dda6802a6c09ee264225b420e3 (patch) | |
tree | fccd1ca869fb47526e289ea98d4039d2870e7263 /audio/mt-daapd | |
parent | a701d0f6c6f9705a63c5d5e6dd2a5d6c19410269 (diff) | |
download | slackbuilds-a6fc14b0f2eba4dda6802a6c09ee264225b420e3.tar.gz slackbuilds-a6fc14b0f2eba4dda6802a6c09ee264225b420e3.tar.xz |
audio/mt-daapd: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/mt-daapd')
-rw-r--r-- | audio/mt-daapd/mt-daapd.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/audio/mt-daapd/mt-daapd.SlackBuild b/audio/mt-daapd/mt-daapd.SlackBuild index e833288a6d1..25d0789e06d 100644 --- a/audio/mt-daapd/mt-daapd.SlackBuild +++ b/audio/mt-daapd/mt-daapd.SlackBuild @@ -26,10 +26,19 @@ PRGNAM=mt-daapd VERSION=0.2.4.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 @@ -44,6 +53,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |