diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:07 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:07 -0400 |
commit | 70ea9bc7bc4ec4b3df43c0af8058356888989492 (patch) | |
tree | 9b8545023df53c46f1bd1ecb7e9adb2d18667dbb /multimedia | |
parent | 36963fc38a50939dcf0e450386d680e27bb8e5fc (diff) | |
download | slackbuilds-70ea9bc7bc4ec4b3df43c0af8058356888989492.tar.gz |
multimedia/xmltv: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/xmltv/xmltv.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/multimedia/xmltv/xmltv.SlackBuild b/multimedia/xmltv/xmltv.SlackBuild index 1ad6337666..c26159f2c7 100644 --- a/multimedia/xmltv/xmltv.SlackBuild +++ b/multimedia/xmltv/xmltv.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=xmltv VERSION=0.5.56 -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} |