diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:48 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:48 -0400 |
commit | c19e294f49fb5807632f30cb9756b56d2d180903 (patch) | |
tree | cf13dc7191b697aada1f2accdb9c0b8aebb8bda9 /libraries/libfprint | |
parent | dbee3430c3a53b3837504311eb8feb066efec6f4 (diff) | |
download | slackbuilds-c19e294f49fb5807632f30cb9756b56d2d180903.tar.gz |
libraries/libfprint: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/libfprint')
-rw-r--r-- | libraries/libfprint/libfprint.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/libfprint/libfprint.SlackBuild b/libraries/libfprint/libfprint.SlackBuild index 408a315a6d..11990e9c02 100644 --- a/libraries/libfprint/libfprint.SlackBuild +++ b/libraries/libfprint/libfprint.SlackBuild @@ -8,10 +8,19 @@ set -e PRGNAM=libfprint VERSION=0.0.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 @@ -26,6 +35,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |