diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:29 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:29 -0400 |
commit | ea752a078930a783e97014e9066c8c0ceb2b3f6d (patch) | |
tree | 42b4d1d48a90654057e4f98c23ad89197406e656 /network/wol | |
parent | 1d1dd2b10740dafab9014a83b2db7377113c0853 (diff) |
network/wol: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/wol')
-rw-r--r-- | network/wol/wol.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/wol/wol.SlackBuild b/network/wol/wol.SlackBuild index 5f31ee85bd98..5c323901c55e 100644 --- a/network/wol/wol.SlackBuild +++ b/network/wol/wol.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=wol VERSION=${VERSION:-0.7.1} -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 @@ -24,6 +33,9 @@ elif [ "$ARCH" = "i486" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |