blob: 8d6af8b015252524e241d72cfd8079c3e4086a09 (
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
5
6 name=rtorrent
7 version=0.8.6
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
14 make
15 make install DESTDIR=$PKG
16 }
|