2010-02-26 16:38:49 +01:00
|
|
|
# Description: bitorrent console client
|
2016-05-28 13:14:13 +02:00
|
|
|
# URL: https://rakshasa.github.io/rtorrent
|
2010-02-26 16:38:49 +01:00
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
2017-11-07 00:18:15 +01:00
|
|
|
# Depends on: libtorrent
|
2010-02-26 16:38:49 +01:00
|
|
|
|
|
|
|
name=rtorrent
|
2018-12-18 00:27:25 +01:00
|
|
|
version=0.9.7
|
2012-11-20 23:33:58 +01:00
|
|
|
release=1
|
2016-05-28 13:14:13 +02:00
|
|
|
source=(http://rtorrent.net/downloads/rtorrent-$version.tar.gz)
|
2010-02-26 16:38:49 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2015-11-30 00:32:57 +01:00
|
|
|
|
|
|
|
# remove cppunit dependency
|
|
|
|
sed -i '/AM_PATH_CPPUNIT(.*)/d' configure.ac
|
|
|
|
./autogen.sh
|
|
|
|
|
2012-07-05 09:29:51 +02:00
|
|
|
./configure --prefix=/usr --mandir=/usr/man --enable-debug=no
|
2010-02-26 16:38:49 +01:00
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
2016-12-21 23:40:36 +01:00
|
|
|
#install -m 644 -D doc/old/rtorrent.1 $PKG/usr/share/man/man1/rtorrent.1
|
2010-02-26 16:38:49 +01:00
|
|
|
}
|