summaryrefslogtreecommitdiffstats
path: root/office
diff options
context:
space:
mode:
author David Somero2010-06-04 07:14:50 +0200
committer David Somero2010-06-04 07:14:50 +0200
commit17054fa46618bd236be1dd3ccd1d722399079ff0 (patch)
treeaf9147526bbb7e20e1dab030a0998345a9d6c3f1 /office
parent74365fb8a912c9b7ff25ce734adb948b065402a7 (diff)
downloadslackbuilds-17054fa46618bd236be1dd3ccd1d722399079ff0.tar.gz
office/latex2html: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'office')
-rw-r--r--office/latex2html/latex2html.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/office/latex2html/latex2html.SlackBuild b/office/latex2html/latex2html.SlackBuild
index d89cdf214d..b3b5161db0 100644
--- a/office/latex2html/latex2html.SlackBuild
+++ b/office/latex2html/latex2html.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=latex2html
VERSION=${VERSION:-2008}
-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
@@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e # Exit on most errors