diff options
author | Grissiom <chaos.proton@gmail.com> | 2010-05-30 19:57:51 +0800 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-06-01 01:24:20 -0500 |
commit | 450fde1509106c6beafe0d030d523b5fee7b5445 (patch) | |
tree | 21efc63fbfed097a34809122dab92a07d7d38b4d | |
parent | e0f0bdf194f9e49fa01f438772cea8598f09e475 (diff) |
system/pyserial: Miscellaneous cleanups (template update)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rwxr-xr-x | system/pyserial/pyserial.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/system/pyserial/pyserial.SlackBuild b/system/pyserial/pyserial.SlackBuild index 8fbd9ffe8b2e..ad81e445e141 100755 --- a/system/pyserial/pyserial.SlackBuild +++ b/system/pyserial/pyserial.SlackBuild @@ -6,7 +6,6 @@ PRGNAM=pyserial VERSION=${VERSION:-2.4} -ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -15,6 +14,16 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} +# only package name use ARCH, python can detect the lib directory itself. +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 + set -e rm -rf $PKG |