mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 13:57:19 +08:00
30 lines
859 B
Bash
30 lines
859 B
Bash
pkgname=libtorrent-rasterbar
|
|
pkgver=1.0.8
|
|
pkgrel=2
|
|
pkgdesc="A C++ library that aims to be a good alternative to all the other bittorrent implementations around"
|
|
url="http://www.rasterbar.com/products/libtorrent/"
|
|
arch=('x86_64')
|
|
license=('BSD')
|
|
depends=('boost-libs' 'python2' 'geoip')
|
|
makedepends=('boost' 'cmake')
|
|
options=('!emptydirs')
|
|
source=(https://github.com/arvidn/libtorrent/releases/download/libtorrent-${pkgver//./_}/$pkgname-$pkgver.tar.gz)
|
|
sha256sums=('477ee10cd4a91b0a13e2ee419096555d0c75584ef1b84abc44b3b643f9a08d3e')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
PYTHON=/usr/bin/python2 \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-python-binding \
|
|
--with-libgeoip=system \
|
|
--with-libiconv
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="${pkgdir}" install
|
|
install -D COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|