diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:37 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:37 -0400 |
commit | 92efcc17a3d2a6bb200ca394904ce4ee3b7117a1 (patch) | |
tree | 18367e24dad21f09adc26aab014f6f140b1cbb40 /libraries/frei0r/frei0r.SlackBuild | |
parent | dc5b858633423bfb24539bad6e64047d6b428ff9 (diff) | |
download | slackbuilds-92efcc17a3d2a6bb200ca394904ce4ee3b7117a1.tar.gz |
libraries/frei0r: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/frei0r/frei0r.SlackBuild')
-rw-r--r-- | libraries/frei0r/frei0r.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/frei0r/frei0r.SlackBuild b/libraries/frei0r/frei0r.SlackBuild index fb681475d3..ec0085a7ef 100644 --- a/libraries/frei0r/frei0r.SlackBuild +++ b/libraries/frei0r/frei0r.SlackBuild @@ -30,10 +30,19 @@ PRGNAM=frei0r VERSION=20100124 -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 @@ -48,6 +57,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |