diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-21 08:29:49 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-23 23:21:39 -0500 |
commit | 09d0a89dabcdeea4b8fbd3cf9282f5b2726950a0 (patch) | |
tree | b399bc1ca8bb4df724197231b67b24ceb23d9ca0 /development/ocaml | |
parent | 0fdb10a0212707b93a7001ff5adefb4c1c3019e3 (diff) | |
download | slackbuilds-09d0a89dabcdeea4b8fbd3cf9282f5b2726950a0.tar.gz |
development/ocaml: Miscellaneous cleanups.
Diffstat (limited to 'development/ocaml')
-rw-r--r-- | development/ocaml/ocaml.SlackBuild | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/development/ocaml/ocaml.SlackBuild b/development/ocaml/ocaml.SlackBuild index fe6980d684..293f43b022 100644 --- a/development/ocaml/ocaml.SlackBuild +++ b/development/ocaml/ocaml.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=ocaml VERSION=3.11.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 @@ -71,10 +83,7 @@ make install \ 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 Changes INSTALL LICENSE README README.win32 Upgrading VERSION \ |