diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-20 14:27:39 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-21 01:48:11 -0500 |
commit | 45aaa1ad0897bc3d73ec4eeed11558cb3b1c11e8 (patch) | |
tree | 2049b5d17a040bcb3c90dfbe72b2ff00e7f016fe /system/ufiformat/ufiformat.SlackBuild | |
parent | bfbc4f3dfac64c0ac27c55f56af40d89f2acf343 (diff) | |
download | slackbuilds-45aaa1ad0897bc3d73ec4eeed11558cb3b1c11e8.tar.gz |
system/ufiformat: Miscellaneous cleanups.
Diffstat (limited to 'system/ufiformat/ufiformat.SlackBuild')
-rwxr-xr-x | system/ufiformat/ufiformat.SlackBuild | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/system/ufiformat/ufiformat.SlackBuild b/system/ufiformat/ufiformat.SlackBuild index c1bef6e126..1b1c5635b6 100755 --- a/system/ufiformat/ufiformat.SlackBuild +++ b/system/ufiformat/ufiformat.SlackBuild @@ -5,10 +5,19 @@ PRGNAM=ufiformat VERSION=0.9.6 -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 @@ -23,6 +32,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e @@ -44,7 +56,7 @@ chmod -R u+w,go+r-w,a-s . make make install-strip DESTDIR=$PKG -find $PKG -type f -exec gzip -9 {} \; +find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS COPYING ChangeLog README $PKG/usr/doc/$PRGNAM-$VERSION |