diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:58 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:58 -0400 |
commit | 5e114ba224cbe67b216b0ff45e2f6237e09e7dcd (patch) | |
tree | 30619afa067236ea55e6a087ff256b77de326703 /office | |
parent | a95153fe2a422f8354137698debae64d33c8345b (diff) | |
download | slackbuilds-5e114ba224cbe67b216b0ff45e2f6237e09e7dcd.tar.gz |
office/rednotebook: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'office')
-rw-r--r-- | office/rednotebook/rednotebook.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/office/rednotebook/rednotebook.SlackBuild b/office/rednotebook/rednotebook.SlackBuild index 41bb56e7a4..0f2c6132d7 100644 --- a/office/rednotebook/rednotebook.SlackBuild +++ b/office/rednotebook/rednotebook.SlackBuild @@ -7,10 +7,19 @@ PRGNAM=rednotebook VERSION=${VERSION:-0.8.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 |