diff options
author | Chess Griffin <chess@chessgriffin.com> | 2010-05-21 23:27:24 -0400 |
---|---|---|
committer | Chess Griffin <chess@chessgriffin.com> | 2010-05-23 23:11:37 -0500 |
commit | 20224f0af1353d1b465fca348e97ac8bd3285ef0 (patch) | |
tree | 9542537bcb4abcd590613666f072d8290d1cb937 /office/keepassx/keepassx.SlackBuild | |
parent | e2ab4a02b74535111a9cda16ea557dd6b49545e8 (diff) | |
download | slackbuilds-20224f0af1353d1b465fca348e97ac8bd3285ef0.tar.gz |
office/keepassx: version bump to 0.4.3
Also some miscellaneous script cleanups
Diffstat (limited to 'office/keepassx/keepassx.SlackBuild')
-rw-r--r-- | office/keepassx/keepassx.SlackBuild | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/office/keepassx/keepassx.SlackBuild b/office/keepassx/keepassx.SlackBuild index 80b5949a6f..a149778cb4 100644 --- a/office/keepassx/keepassx.SlackBuild +++ b/office/keepassx/keepassx.SlackBuild @@ -23,11 +23,20 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=keepassx -VERSION=0.4.1 -ARCH=${ARCH:-i486} +VERSION=0.4.3 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 @@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |