summaryrefslogtreecommitdiffstats
path: root/misc/rlwrap/rlwrap.SlackBuild
diff options
context:
space:
mode:
author slakmagik2010-05-24 07:16:13 +0200
committer Robby Workman2010-05-24 23:10:22 +0200
commit77f8ee4bd4d5add19fe1149254d0a69d49ed71a6 (patch)
treef942439aab7263007271b719abfe0926727deb56 /misc/rlwrap/rlwrap.SlackBuild
parenta19f3f21069f64fd4231572b96b8fb2ebe65e29a (diff)
downloadslackbuilds-77f8ee4bd4d5add19fe1149254d0a69d49ed71a6.tar.gz
misc/rlwrap: Updated for version 0.37.
Diffstat (limited to 'misc/rlwrap/rlwrap.SlackBuild')
-rw-r--r--misc/rlwrap/rlwrap.SlackBuild16
1 files changed, 14 insertions, 2 deletions
diff --git a/misc/rlwrap/rlwrap.SlackBuild b/misc/rlwrap/rlwrap.SlackBuild
index 201ef8a841..b3543cb519 100644
--- a/misc/rlwrap/rlwrap.SlackBuild
+++ b/misc/rlwrap/rlwrap.SlackBuild
@@ -5,11 +5,20 @@
# Released under the WTFPL
PRGNAM=rlwrap
-VERSION=${VERSION:-0.32}
-ARCH=${ARCH:-i486}
+VERSION=${VERSION:-0.37}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+# Automatically determine the architecture we're building on:
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) export ARCH=i486 ;;
+ arm*) export ARCH=arm ;;
+ # Unless $ARCH is already set, use uname -m for all other archs:
+ *) export ARCH=$( uname -m ) ;;
+ esac
+fi
+
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e