diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:21 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:21 -0400 |
commit | 0c409c7dcc9edd2397e609306bb30ef659761321 (patch) | |
tree | ed98b944f58684abba092626808889883d82f6fa /network/mpop | |
parent | 3b807c8315d18a2ac72762e39b779d0c07489afe (diff) | |
download | slackbuilds-0c409c7dcc9edd2397e609306bb30ef659761321.tar.gz |
network/mpop: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/mpop')
-rw-r--r-- | network/mpop/mpop.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/mpop/mpop.SlackBuild b/network/mpop/mpop.SlackBuild index 0d88264391..993e05b1c4 100644 --- a/network/mpop/mpop.SlackBuild +++ b/network/mpop/mpop.SlackBuild @@ -9,10 +9,19 @@ PRGNAM=mpop VERSION=${VERSION:-1.0.18} -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 @@ -27,6 +36,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |