20 lines
420 B
Plaintext
20 lines
420 B
Plaintext
# Description: torrent library
|
|
# URL: https://rakshasa.github.io/rtorrent
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: libsigc++ curl
|
|
|
|
name=libtorrent
|
|
version=0.13.8
|
|
release=1
|
|
source=(https://github.com/rakshasa/libtorrent/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./autogen.sh
|
|
./configure --prefix=/usr \
|
|
--enable-debug=no
|
|
make
|
|
make install DESTDIR=$PKG
|
|
}
|