blob: 8cca8c3aeab6b3120141cd692859a17d915a3db0 (
plain)
1 # Description: torrent library
2 # URL: https://rakshasa.github.io/rtorrent
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: libsigc++ curl
5
6 name=libtorrent
7 version=0.13.6
8 release=1
9 source=(http://rtorrent.net/downloads/libtorrent-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 # remove cppunit dependency
15 sed -i '/AM_PATH_CPPUNIT(.*)/d' configure.ac
16 ./autogen.sh
17
18 ./configure --prefix=/usr --enable-debug=no
19 make
20 make install DESTDIR=$PKG
21 }
|