mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
desktop/QtCurve-Gtk2: Miscellaneous cleanups.
This commit is contained in:
parent
23cb2d2942
commit
f3284e4945
1 changed files with 14 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
# Slackware build script for QtCurve-Gtk2
|
# Slackware build script for QtCurve-Gtk2
|
||||||
# Written by bughunter2 (bughunter2@googlemail.com)
|
# Written by bughunter2 (bughunter2@googlemail.com)
|
||||||
|
|
||||||
# Copyright 2008-2009 Michiel van Wessem, Manchester, United Kingdom
|
# Copyright 2008-2009 Michiel van Wessem, Manchester, United Kingdom
|
||||||
# Copyright 2009 Gregory J. L. Tourte, UK (artourter@gmail.com)
|
# Copyright 2009 Gregory J. L. Tourte, UK (artourter@gmail.com)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
@ -27,10 +28,19 @@
|
||||||
|
|
||||||
PRGNAM=QtCurve-Gtk2
|
PRGNAM=QtCurve-Gtk2
|
||||||
VERSION=${VERSION:-1.3.0}
|
VERSION=${VERSION:-1.3.0}
|
||||||
ARCH=${ARCH:-i486}
|
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
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)
|
CWD=$(pwd)
|
||||||
TMP=${TMP:-/tmp/SBo}
|
TMP=${TMP:-/tmp/SBo}
|
||||||
PKG=$TMP/package-$PRGNAM
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
@ -45,6 +55,9 @@ elif [ "$ARCH" = "i686" ]; then
|
||||||
elif [ "$ARCH" = "x86_64" ]; then
|
elif [ "$ARCH" = "x86_64" ]; then
|
||||||
SLKCFLAGS="-O2 -fPIC"
|
SLKCFLAGS="-O2 -fPIC"
|
||||||
LIBDIRSUFFIX="64"
|
LIBDIRSUFFIX="64"
|
||||||
|
else
|
||||||
|
SLKCFLAGS="-O2"
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
fi
|
fi
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue