diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:34 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:34 -0400 |
commit | 40958fb0cdb3b7fcb2857eda44416d569b713461 (patch) | |
tree | b45ede0d6e9544a705fc6ea36dc3bb4187e4984f /accessibility | |
parent | 16af70dccd788bf98c192bf35096d18892401e73 (diff) | |
download | slackbuilds-40958fb0cdb3b7fcb2857eda44416d569b713461.tar.gz |
accessibility/jpilot: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/jpilot/jpilot.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/accessibility/jpilot/jpilot.SlackBuild b/accessibility/jpilot/jpilot.SlackBuild index f03c88605f..96664a9833 100644 --- a/accessibility/jpilot/jpilot.SlackBuild +++ b/accessibility/jpilot/jpilot.SlackBuild @@ -26,10 +26,19 @@ PRGNAM=jpilot VERSION=${VERSION:-1.6.2} -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 @@ -44,6 +53,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLCKFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |