diff options
author | Olivier Esser <olive001@tele2allin.be> | 2010-05-11 20:00:58 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:00:58 +0200 |
commit | 705d15ea3b46242ec5e851829e7db4cbf76ad099 (patch) | |
tree | 2e26105c226c18e2c276b291019a9137f70d1807 /libraries/opal/opal.SlackBuild | |
parent | ec6c256fc14d14469367afe66178d078135457f0 (diff) |
libraries/opal: Added to 12.0 repository
Diffstat (limited to 'libraries/opal/opal.SlackBuild')
-rw-r--r-- | libraries/opal/opal.SlackBuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/libraries/opal/opal.SlackBuild b/libraries/opal/opal.SlackBuild new file mode 100644 index 0000000000000..deffee8ef6401 --- /dev/null +++ b/libraries/opal/opal.SlackBuild @@ -0,0 +1,59 @@ +#!/bin/sh + +# Slackware build script for opal + +# Written by Olivier Esser (olive001@tele2allin.be), based on +# the template available at slackbuilds.org (public domain) + +# Exit on most errors +set -e + +PRGNAM=opal +VERSION=2.2.11 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var + +CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" make +make install DESTDIR=$PKG + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a mpl-1.0.htm $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -p -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz |