diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:08:44 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:08:44 -0400 |
commit | 4984b07657dd6eb04336138119e128f1c80fbce6 (patch) | |
tree | efaafdf9574be3294b55f5c7ec936c6e60e3818d /libraries/librsync | |
parent | cd0b75ffbf34dd9da1508f302d0c3d5bd9da80c5 (diff) | |
download | slackbuilds-4984b07657dd6eb04336138119e128f1c80fbce6.tar.gz |
libraries/librsync: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/librsync')
-rw-r--r-- | libraries/librsync/librsync.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/librsync/librsync.SlackBuild b/libraries/librsync/librsync.SlackBuild index b7b671363b..61b7753bf9 100644 --- a/libraries/librsync/librsync.SlackBuild +++ b/libraries/librsync/librsync.SlackBuild @@ -16,10 +16,19 @@ umask 0022 PRGNAM=librsync VERSION=0.9.7 -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 @@ -34,6 +43,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |