blob: 3ca15f3c68b403bebe5c5611190f8097b55ef78f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: client BitTorrent en console utilisant ncurses
# URL: http://libtorrent.rakshasa.no/downloads/
# Maintainer: NuTyX core team
# Packager: skingrapher at legtux dot org
# Depends on: libtorrent, curl
name=rtorrent
version=0.8.5
release=1
source=(http://libtorrent.rakshasa.no/downloads/$name-$version.tar.gz)
build() {
cd $name-$version
./autogen.sh
./configure --prefix=/usr --enable-ipv6
make
make DESTDIR=$PKG install
}
|