2010-02-26 16:39:05 +01:00
|
|
|
# Description: torrent library
|
2016-05-28 13:14:23 +02:00
|
|
|
# URL: https://rakshasa.github.io/rtorrent
|
2010-02-26 16:39:05 +01:00
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
|
|
# Depends on: libsigc++ curl
|
|
|
|
|
|
|
|
name=libtorrent
|
2018-12-18 00:27:22 +01:00
|
|
|
version=0.13.7
|
2014-06-16 21:45:03 +02:00
|
|
|
release=1
|
2016-05-28 13:14:23 +02:00
|
|
|
source=(http://rtorrent.net/downloads/libtorrent-$version.tar.gz)
|
2010-02-26 16:39:05 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2015-11-30 00:11:37 +01:00
|
|
|
|
|
|
|
# remove cppunit dependency
|
|
|
|
sed -i '/AM_PATH_CPPUNIT(.*)/d' configure.ac
|
|
|
|
./autogen.sh
|
|
|
|
|
2012-07-05 09:30:05 +02:00
|
|
|
./configure --prefix=/usr --enable-debug=no
|
2010-02-26 16:39:05 +01:00
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
|
|
|
}
|