diff options
author | Tim Fitzhenry <tom@fitzhenry.name> | 2010-05-11 20:00:56 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:00:56 +0200 |
commit | e4222dbc274afe9561eace10b6eb0e79dbcc6630 (patch) | |
tree | eef0b8bb028fa2541df7361ebb29bc15b5062c83 /libraries/libtorrent/libtorrent.SlackBuild | |
parent | 209640e811400436f4586dbc9307c7c98da3ac56 (diff) | |
download | slackbuilds-e4222dbc274afe9561eace10b6eb0e79dbcc6630.tar.gz |
libraries/libtorrent: Added to 12.0 repository
Diffstat (limited to 'libraries/libtorrent/libtorrent.SlackBuild')
-rw-r--r-- | libraries/libtorrent/libtorrent.SlackBuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/libraries/libtorrent/libtorrent.SlackBuild b/libraries/libtorrent/libtorrent.SlackBuild new file mode 100644 index 0000000000..c01fc8d2e5 --- /dev/null +++ b/libraries/libtorrent/libtorrent.SlackBuild @@ -0,0 +1,64 @@ +#!/bin/sh + +# Slackware build script for libtorrent +# Written by Tom Fitzhenry <tom@fitzhenry.name> 2007/08/22 + +# Updated by Andrew Brouwers, abrouwers@gmail.com + +APP=libtorrent +VERSION=0.12.0 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$APP +OUTPUT=${OUTPUT:-/tmp} + +DOCS="AUTHORS COPYING INSTALL NEWS README TODO" + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +rm -rf $TMP/$APP-$VERSION +cd $TMP || exit 1 +tar xvf $CWD/$APP-$VERSION.tar.gz || exit 1 +cd $APP-$VERSION +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" \ + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + || exit 1 + +make || exit 1 +make install DESTDIR=$PKG || exit 1 + +mkdir -p $PKG/usr/doc/$APP-$VERSION +cp -a $DOCS $PKG/usr/doc/$APP-$VERSION +find $PKG/usr/doc/$APP-$VERSION -type f -exec chmod 644 {} \; +cat $CWD/$APP.SlackBuild > $PKG/usr/doc/$APP-$VERSION/$APP-SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +( 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 +) + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$APP-$VERSION-$ARCH-$BUILD$TAG.tgz |