blob: 220ab275b15116ee9258d7e606f4a49f57245e75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Description: un client bitorrent en c++ comme alternative aux autres client.
# URL:http://www.rasterbar.com/products/libtorrent/
# Maintainer: NuTyX core team
# Packager: fanch
# Depends on:
# Run on: boost,python
name=libtorrent-rasterbar
version=0.15.4
release=1
source=(http://libtorrent.googlecode.com/files/$name-$version.tar.gz
disable-valloc.dpatch)
build() {
cd $SRC/$name-$version
patch -Np1 -i $SRC/disable-valloc.dpatch
PYTHON=python2 ./configure --prefix=/usr --enable-python-binding \
--with-boost-filesystem=mt \
--with-boost-thread=mt
make
make DESTDIR=$PKG install
install -D COPYING $PKG/usr/share/licenses/$name/LICENSE
}
|