diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:39 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:39 -0400 |
commit | d17acf304b8f43f9a34f1a38ae6359585b6a8fdd (patch) | |
tree | ff6f7270a81d0e4bc0ecbd5a60b7dfb1d836ac8b /desktop/tint2/tint2.SlackBuild | |
parent | 07698ba168d74a5babdc9756c5e07838150989bd (diff) | |
download | slackbuilds-d17acf304b8f43f9a34f1a38ae6359585b6a8fdd.tar.gz |
desktop/tint2: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/tint2/tint2.SlackBuild')
-rw-r--r-- | desktop/tint2/tint2.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/desktop/tint2/tint2.SlackBuild b/desktop/tint2/tint2.SlackBuild index be71da5ff4..2ef4693bb2 100644 --- a/desktop/tint2/tint2.SlackBuild +++ b/desktop/tint2/tint2.SlackBuild @@ -8,10 +8,19 @@ PRGNAM=tint2 VERSION=${VERSION:-0.9} -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 |