21 lines
457 B
Plaintext
Raw Normal View History

2015-12-22 22:50:50 +11:00
# Description: A C++ bittorrent library.
2020-06-01 15:45:48 +00:00
# URL: https://www.rasterbar.com/products/libtorrent/
2018-02-21 22:28:28 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: boost
2011-04-10 23:27:43 +10:00
name=libtorrent-rasterbar
2020-06-01 23:02:28 +10:00
version=1.2.7
2020-01-07 00:34:38 +11:00
release=1
2020-06-01 23:02:28 +10:00
source=(https://github.com/arvidn/libtorrent/releases/download/libtorrent_${version//./_}/$name-$version.tar.gz)
2015-12-22 22:50:50 +11:00
2011-04-10 23:27:43 +10:00
build() {
cd $name-$version
./configure \
--prefix=/usr \
--enable-python-binding
make
make DESTDIR=$PKG install
}