blob: 00a9d309e81ea37ac1d89eb6e6dc6aeed8eda02c (
plain)
1 # Description: bitorrent console client
2 # URL: http://libtorrent.rakshasa.no
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: libtorrent libsigc++
5
6 name=rtorrent
7 version=0.9.4
8 release=1
9 source=(http://libtorrent.rakshasa.no/downloads/rtorrent-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr --mandir=/usr/man --enable-debug=no
14 make
15 make install DESTDIR=$PKG
16 #install -m 644 -D doc/rtorrent.1 $PKG/usr/man/man1/rtorrent.1
17 }
|