diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:14 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:14 -0400 |
commit | dd9eb0ddacf611359ce817b75a9a989f6a2f3098 (patch) | |
tree | 2ef356d3b79065e4c1e715f2d98511c378496166 /libraries | |
parent | 12a4c675c5b414488fe4b9299f133fdd0aabd1eb (diff) | |
download | slackbuilds-dd9eb0ddacf611359ce817b75a9a989f6a2f3098.tar.gz |
libraries/cln: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/cln/cln.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/cln/cln.SlackBuild b/libraries/cln/cln.SlackBuild index 3482ba3317..da084fae66 100644 --- a/libraries/cln/cln.SlackBuild +++ b/libraries/cln/cln.SlackBuild @@ -23,10 +23,19 @@ PRGNAM=cln VERSION=1.3.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 @@ -43,6 +52,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |