contrib/rtorrent/Pkgfile

23 lines
587 B
Plaintext
Raw Normal View History

2010-02-26 16:38:49 +01:00
# Description: bitorrent console client
# URL: http://libtorrent.rakshasa.no
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: libtorrent libsigc++
2010-02-26 16:38:49 +01:00
name=rtorrent
2015-11-30 00:32:57 +01:00
version=0.9.6
2012-11-20 23:33:58 +01:00
release=1
2015-11-30 00:32:57 +01:00
source=(https://github.com/rakshasa/rtorrent/archive/${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
./configure --prefix=/usr --mandir=/usr/man --enable-debug=no
2010-02-26 16:38:49 +01:00
make
make install DESTDIR=$PKG
2015-11-30 00:32:57 +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
}