diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:18 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:18 -0400 |
commit | 155af0118e395b2406cb8ad4772de835dc315b0b (patch) | |
tree | 1cac77408ebf0def4a0bfe898bdac75f9a932873 /libraries/cryptopp | |
parent | 0ba1e6da59c324fa46cc9c67bb9fdc28b9c3ccbe (diff) | |
download | slackbuilds-155af0118e395b2406cb8ad4772de835dc315b0b.tar.gz |
libraries/cryptopp: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/cryptopp')
-rw-r--r-- | libraries/cryptopp/cryptopp.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/cryptopp/cryptopp.SlackBuild b/libraries/cryptopp/cryptopp.SlackBuild index 6a2b964bd1..8c6384b77c 100644 --- a/libraries/cryptopp/cryptopp.SlackBuild +++ b/libraries/cryptopp/cryptopp.SlackBuild @@ -5,10 +5,19 @@ PRGNAM=cryptopp VERSION=${VERSION:-5.6.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 @@ -23,6 +32,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |