diff options
author | Ferenc Deak <ferenc.deak@gmail.com> | 2010-05-12 17:38:44 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 17:38:44 +0200 |
commit | d0594bc01e9fabca6457baacea0488a196d83528 (patch) | |
tree | 0121d562eef7bf4ebfe01242cffda59f568248a2 | |
parent | 9dccbbf5610dd0a3728f9ec733767890845a5b69 (diff) | |
download | slackbuilds-d0594bc01e9fabca6457baacea0488a196d83528.tar.gz |
development/ocaml: Updated for version 3.10.2
-rw-r--r-- | development/ocaml/ocaml.SlackBuild | 24 | ||||
-rw-r--r-- | development/ocaml/ocaml.info | 2 |
2 files changed, 20 insertions, 6 deletions
diff --git a/development/ocaml/ocaml.SlackBuild b/development/ocaml/ocaml.SlackBuild index 5951b728aa..7fb57a6d95 100644 --- a/development/ocaml/ocaml.SlackBuild +++ b/development/ocaml/ocaml.SlackBuild @@ -25,7 +25,7 @@ PRGNAM=ocaml VERSION=3.10.2 ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -35,8 +35,13 @@ OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" fi set -e @@ -50,15 +55,24 @@ cd $PRGNAM-$VERSION chown -R root:root . chmod -R u+w,go+r-w,a-s . -./configure --prefix /usr +./configure \ + --prefix /usr \ + --libdir /usr/lib${LIBDIRSUFFIX}/ocaml \ + --host $ARCH-slackware-linux + sed -i -e "s/\\(BYTECCCOMPOPTS=.*\\)/\\1 ${SLKCFLAGS}/" config/Makefile sed -i -e "s/\\(NATIVECCCOMPOPTS=.*\\)/\\1 ${SLKCFLAGS}/" config/Makefile + make world.opt -make PREFIX=$PKG/usr install +make install \ + PREFIX=$PKG/usr \ + LIBDIR=$PKG/usr/lib${LIBDIRSUFFIX}/ocaml ( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null ) ( cd $PKG/usr/man diff --git a/development/ocaml/ocaml.info b/development/ocaml/ocaml.info index 1ec50aadc8..d0a1c3837e 100644 --- a/development/ocaml/ocaml.info +++ b/development/ocaml/ocaml.info @@ -5,4 +5,4 @@ DOWNLOAD="http://caml.inria.fr/pub/distrib/ocaml-3.10/ocaml-3.10.2.tar.bz2" MD5SUM="d86f8f8aa4574fa60dd6f89044580307" MAINTAINER="Ferenc Deak" EMAIL="ferenc.deak@gmail.com" -APPROVED="David Somero" +APPROVED="dsomero,rworkman" |