diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:08:03 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:08:03 -0400 |
commit | 85cb0bee2310819e44ef4e7d816b6540f9b83b95 (patch) | |
tree | b197366979bdf1b9543674ba248e62a8e63e4711 /libraries/libgtop | |
parent | f96a8aa50e4519665ac2ecc5a4e4d0511e7c6368 (diff) | |
download | slackbuilds-85cb0bee2310819e44ef4e7d816b6540f9b83b95.tar.gz |
libraries/libgtop: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/libgtop')
-rw-r--r-- | libraries/libgtop/libgtop.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/libgtop/libgtop.SlackBuild b/libraries/libgtop/libgtop.SlackBuild index 9eeec226c4..256bb93b3f 100644 --- a/libraries/libgtop/libgtop.SlackBuild +++ b/libraries/libgtop/libgtop.SlackBuild @@ -23,10 +23,19 @@ PRGNAM=libgtop VERSION=${VERSION:-2.24.0} -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 @@ -41,6 +50,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |