diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:15 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:15 -0400 |
commit | 4b3f8c09b33e06770bc485d221eedfe6b8f99d0c (patch) | |
tree | 72121af178c7854f6ad8b9fd0d47d3723e72a80f | |
parent | e922cdcd1b2925ae3951a6adc10f958723261fa2 (diff) | |
download | slackbuilds-4b3f8c09b33e06770bc485d221eedfe6b8f99d0c.tar.gz |
graphics/fontmatrix: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | graphics/fontmatrix/fontmatrix.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/graphics/fontmatrix/fontmatrix.SlackBuild b/graphics/fontmatrix/fontmatrix.SlackBuild index 22074944ec..c14a4b7665 100644 --- a/graphics/fontmatrix/fontmatrix.SlackBuild +++ b/graphics/fontmatrix/fontmatrix.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=fontmatrix VERSION=${VERSION:-0.6.0} -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 # Decide if we compile fontmatrix with icu4c and/or podofo support. Default is no. |