diff options
author | David Somero | 2010-06-04 07:11:30 +0200 |
---|---|---|
committer | David Somero | 2010-06-04 07:11:30 +0200 |
commit | f8c03d038b6b69b34c7463bb411304e1a6a75420 (patch) | |
tree | aefcaa841e9fde0e8b56fe61b2f42e526990df79 /multimedia/dvdstyler | |
parent | 4280e504298134c83f5c60441778ca2c0e125650 (diff) | |
download | slackbuilds-f8c03d038b6b69b34c7463bb411304e1a6a75420.tar.gz |
multimedia/dvdstyler: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'multimedia/dvdstyler')
-rw-r--r-- | multimedia/dvdstyler/dvdstyler.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/multimedia/dvdstyler/dvdstyler.SlackBuild b/multimedia/dvdstyler/dvdstyler.SlackBuild index 3f92cf7e4c..822dd70c2e 100644 --- a/multimedia/dvdstyler/dvdstyler.SlackBuild +++ b/multimedia/dvdstyler/dvdstyler.SlackBuild @@ -7,10 +7,19 @@ PRGNAM=dvdstyler SPRGNAM=DVDStyler VERSION=${VERSION:-1.8.0b3} -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 @@ -25,6 +34,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |