21 lines
457 B
Plaintext
21 lines
457 B
Plaintext
# Description: A C++ bittorrent library.
|
|
# URL: https://www.rasterbar.com/products/libtorrent/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: boost
|
|
|
|
name=libtorrent-rasterbar
|
|
version=1.2.7
|
|
release=1
|
|
source=(https://github.com/arvidn/libtorrent/releases/download/libtorrent_${version//./_}/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-python-binding
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|