summaryrefslogtreecommitdiffstats
path: root/system/atool/atool.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'system/atool/atool.SlackBuild')
-rwxr-xr-xsystem/atool/atool.SlackBuild17
1 files changed, 15 insertions, 2 deletions
diff --git a/system/atool/atool.SlackBuild b/system/atool/atool.SlackBuild
index bfc1bd2c19..abc813b929 100755
--- a/system/atool/atool.SlackBuild
+++ b/system/atool/atool.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=atool
VERSION=${VERSION:-0.37.0}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SB0}
+# 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
@@ -76,7 +88,8 @@ make install DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-gzip -9 $PKG/usr/man/man?/*.?
+find $PKG/usr/man -type f -exec gzip -9 {} \;
+for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \