diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:17 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:17 -0400 |
commit | 3e936f01c2e67cfbf9081dab47b9b280ffdd9a5f (patch) | |
tree | f6127796c3852a04e7f5b567137a6540e13634d9 | |
parent | 7fb2fc7db3182d310b9d3fb7232a830ddc5b7a7f (diff) | |
download | slackbuilds-3e936f01c2e67cfbf9081dab47b9b280ffdd9a5f.tar.gz |
system/cdemu-daemon: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | system/cdemu-daemon/cdemu-daemon.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/cdemu-daemon/cdemu-daemon.SlackBuild b/system/cdemu-daemon/cdemu-daemon.SlackBuild index 89f3205b4c..8a3c760d6e 100644 --- a/system/cdemu-daemon/cdemu-daemon.SlackBuild +++ b/system/cdemu-daemon/cdemu-daemon.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=cdemu-daemon VERSION=1.1.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 @@ -44,6 +53,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |