diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:54 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:54 -0400 |
commit | ae443214522075493c64c75481a4bb0412ad3885 (patch) | |
tree | 8efabc75d97705c612dfb9f3dccfc77595c93aaa /misc/fileinfo | |
parent | fc9d93fa8e3ab928adb9ed407e205f0350a353ce (diff) |
misc/fileinfo: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc/fileinfo')
-rw-r--r-- | misc/fileinfo/fileinfo.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/misc/fileinfo/fileinfo.SlackBuild b/misc/fileinfo/fileinfo.SlackBuild index 714680d6f7d4..2d8486ab8855 100644 --- a/misc/fileinfo/fileinfo.SlackBuild +++ b/misc/fileinfo/fileinfo.SlackBuild @@ -2,10 +2,19 @@ PRGNAM=fileinfo VERSION=1.0.4 -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 |