mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/libtorrent: Added to 12.0 repository
This commit is contained in:
parent
209640e811
commit
e4222dbc27
4 changed files with 98 additions and 0 deletions
7
libraries/libtorrent/README
Normal file
7
libraries/libtorrent/README
Normal file
|
@ -0,0 +1,7 @@
|
|||
LibTorrent is a BitTorrent library written in C++ for *nix, with a focus on high
|
||||
performance and good code. The library differentiates itself from other
|
||||
implementations by transfering directly from file pages to the network stack. On
|
||||
high-bandwidth connections it is able to seed at 3 times the speed of the
|
||||
official client.
|
||||
|
||||
This requires libsigc++ (libsigcxx in the SlackBuilds.org repository).
|
64
libraries/libtorrent/libtorrent.SlackBuild
Normal file
64
libraries/libtorrent/libtorrent.SlackBuild
Normal file
|
@ -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
|
8
libraries/libtorrent/libtorrent.info
Normal file
8
libraries/libtorrent/libtorrent.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="libtorrent"
|
||||
VERSION="0.12.0"
|
||||
HOMEPAGE="http://libtorrent.rakshasa.no/"
|
||||
DOWNLOAD="http://libtorrent.rakshasa.no/downloads/libtorrent-0.12.0.tar.gz"
|
||||
MD5SUM="003c5a7a1d001282892eeeb93b57e035"
|
||||
MAINTAINER="Tim Fitzhenry"
|
||||
EMAIL="tom@fitzhenry.name"
|
||||
APPROVED="rworkman"
|
19
libraries/libtorrent/slack-desc
Normal file
19
libraries/libtorrent/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
libtorrent: libtorrent (C++ torrent library)
|
||||
libtorrent:
|
||||
libtorrent: LibTorrent is a BitTorrent library written in C++ for *nix
|
||||
libtorrent: with a focus on high performance and good code.
|
||||
libtorrent:
|
||||
libtorrent: Homepage: http://libtorrent.rakshasa.no/
|
||||
libtorrent:
|
||||
libtorrent:
|
||||
libtorrent:
|
||||
libtorrent:
|
||||
libtorrent:
|
Loading…
Reference in a new issue