# Maintainer: Chocobo1 pkgname=libtorrent-rasterbar-1_2-git pkgver=1.2.2.r57.g8378c0f55 pkgrel=1 pkgdesc="A feature complete C++ bittorrent library (git branch RC_1_2)" arch=('i686' 'x86_64') url="https://www.libtorrent.org/" license=('BSD') depends=('boost-libs') makedepends=('git' 'boost' 'cmake' 'python' 'python-setuptools') provides=('libtorrent-rasterbar') conflicts=('libtorrent-rasterbar') options=('!strip') source=('git+https://github.com/arvidn/libtorrent.git#branch=RC_1_2') sha256sums=('SKIP') pkgver() { cd "libtorrent" git describe --long --tags | sed 's/^[A-Za-z]*[-_]//;s/\([^-]*-g\)/r\1/;s/[_-]/./g' } build() { cd "libtorrent" mkdir -p "_build" && cd "_build" cmake \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX="/usr" \ -DCMAKE_INSTALL_LIBDIR="lib" \ -Dpython-bindings=ON \ -Dboost-python-module-name="python" \ "../" make } package() { cd "libtorrent" make -C "_build" DESTDIR="$pkgdir" install install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/libtorrent-rasterbar" # work around invalid flag sed -i -e 's|-lvals-NOTFOUND||g' "$pkgdir/usr/lib/pkgconfig/libtorrent-rasterbar.pc" }