diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-24 13:17:54 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-24 16:10:23 -0500 |
commit | 12936c278b0977c8f4aac2967bfd194556f6af1b (patch) | |
tree | f2f5afd8682aba749cfe17be8dc72c12574d437e /libraries/icu4c | |
parent | bc3e358cd6a72c1d77451213fa3de42330e78c0e (diff) |
libraries/icu4c: Miscellaneous cleanups.
Diffstat (limited to 'libraries/icu4c')
-rw-r--r-- | libraries/icu4c/icu4c.SlackBuild | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/libraries/icu4c/icu4c.SlackBuild b/libraries/icu4c/icu4c.SlackBuild index aaf2ca3e6955..b9a2313bc4ce 100644 --- a/libraries/icu4c/icu4c.SlackBuild +++ b/libraries/icu4c/icu4c.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=icu4c VERSION=4.2.1 -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 @@ -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 @@ -79,10 +91,7 @@ cd - find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a license.html readme.html unicode-license.txt $PKG/usr/doc/$PRGNAM-$VERSION |