2019-12-22 18:33:29 +00:00
|
|
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
|
|
|
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
|
|
|
# Contributor: Hugo Doria <hugo@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - explicitly link v5/v6 with libatomic
|
|
|
|
|
|
|
|
pkgname=libtorrent-rasterbar
|
2020-03-29 20:16:56 +00:00
|
|
|
pkgver=1.2.5
|
2020-02-16 23:16:26 +00:00
|
|
|
pkgrel=1
|
2019-12-22 18:33:29 +00:00
|
|
|
epoch=1
|
|
|
|
pkgdesc="A C++ BitTorrent library that aims to be a good alternative to all the other implementations around"
|
|
|
|
url="https://www.rasterbar.com/products/libtorrent/"
|
|
|
|
arch=('x86_64')
|
|
|
|
license=('BSD')
|
|
|
|
depends=('boost-libs')
|
|
|
|
makedepends=('boost' 'python2' 'python')
|
|
|
|
options=('!emptydirs')
|
|
|
|
_pkgver=${pkgver//./_}
|
|
|
|
source=(https://github.com/arvidn/libtorrent/releases/download/libtorrent-$_pkgver/$pkgname-$pkgver.tar.gz)
|
2020-03-29 20:16:56 +00:00
|
|
|
sha512sums=('b907916bb2b4d550a5173783163cb192c31c0db5e25a4807a4701d1e5fa7e0d4fd9f1fb2c89b43f613a750b42816b07576fb773663fbf3cfb2e3e4b9de380f26')
|
2019-12-22 18:33:29 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir py2 py3
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
|
|
|
|
# Avoid depending on newer processors
|
|
|
|
sed -i 's/-msse4.2//' configure.ac
|
|
|
|
|
|
|
|
autoreconf -if
|
|
|
|
}
|
|
|
|
|
|
|
|
_build() (
|
|
|
|
cd py$1
|
|
|
|
|
|
|
|
# FS#50745
|
|
|
|
_boost="boost_python"
|
|
|
|
if [ $1 -eq 3 ]; then _boost="boost_python3"; fi
|
|
|
|
|
|
|
|
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LIBS="-latomic"
|
|
|
|
LIBS=$LIBS PYTHON=/usr/bin/python$1 \
|
|
|
|
../$pkgname-$pkgver/configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-python-binding \
|
|
|
|
--enable-examples \
|
|
|
|
--disable-static \
|
|
|
|
--with-libiconv \
|
|
|
|
--with-boost-python=$_boost
|
|
|
|
)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
_build 2
|
|
|
|
_build 3
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
make -C py2 DESTDIR="$pkgdir" install
|
|
|
|
make -C py3 DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 $pkgname-$pkgver/COPYING \
|
|
|
|
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
|
|
|
|
|
|
# Remove most example binaries
|
|
|
|
rm "$pkgdir"/usr/bin/{*_test,*_tester,simple_client,stats_counters}
|
|
|
|
}
|