diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-28 11:12:31 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-29 00:07:38 -0500 |
commit | 134a160687b7d0c9e8f55ba7af0994bf38511608 (patch) | |
tree | 5911b5f55798e08d16c3a1ba6a7343edc54a7e1c /graphics | |
parent | 6d1c74559bad02fd1af71ea059ae36c82ce682b3 (diff) | |
download | slackbuilds-134a160687b7d0c9e8f55ba7af0994bf38511608.tar.gz |
graphics/picasa: Updated copyright and misc tweaks
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/picasa/picasa.SlackBuild | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/graphics/picasa/picasa.SlackBuild b/graphics/picasa/picasa.SlackBuild index 6d096a41fc..830e2561d3 100644 --- a/graphics/picasa/picasa.SlackBuild +++ b/graphics/picasa/picasa.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script of picasa (binary repackaging) -# Copyright 2006,2007,2008,2009,2010 Robby Workman, Northport, Alabama, USA +# Copyright 2006-2011 Robby Workman, Northport, Alabama, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -27,15 +27,12 @@ VERSION=${VERSION:-3.0.5744} BUILD=${BUILD:-2} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i386 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi +case "$( uname -m )" in + i?86) ARCH=i386 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; +esac + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -45,7 +42,6 @@ if [ "$ARCH" = "x86_64" ]; then SRCARCH=amd64 LIBDIRSUFFIX="64" elif [ "$ARCH" = "i386" ]; then - ARCH=i386 SRCARCH=i386 LIBDIRSUFFIX="" else |