desktop/QtCurve-Gtk2: Miscellaneous cleanups.

This commit is contained in:
Robby Workman 2010-05-24 10:56:54 -05:00
parent 23cb2d2942
commit f3284e4945

View file

@ -2,6 +2,7 @@
# Slackware build script for QtCurve-Gtk2
# Written by bughunter2 (bughunter2@googlemail.com)
# Copyright 2008-2009 Michiel van Wessem, Manchester, United Kingdom
# Copyright 2009 Gregory J. L. Tourte, UK (artourter@gmail.com)
# All rights reserved.
@ -27,10 +28,19 @@
PRGNAM=QtCurve-Gtk2
VERSION=${VERSION:-1.3.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) export ARCH=i486 ;;
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@ -45,6 +55,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e