blob: 1b8e6682db0510482e61d5edb71e225248b3a653 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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
# Run 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
}
|