43 lines
1.4 KiB
Bash
43 lines
1.4 KiB
Bash
# Template file for 'libtorrent-rasterbar'
|
|
pkgname=libtorrent-rasterbar
|
|
version=1.1.7
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--enable-python-binding --with-boost=${XBPS_CROSS_BASE}/usr"
|
|
hostmakedepends="automake pkg-config intltool libtool python-devel"
|
|
makedepends="libressl-devel boost-devel boost-python geoip-devel python-devel"
|
|
short_desc="C++ bittorrent library by Rasterbar Software"
|
|
maintainer="Eivind Uggedal <eivind@uggedal.com>"
|
|
homepage="https://libtorrent.org/"
|
|
license="BSD-3-Clause"
|
|
distfiles="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${version//./_}/libtorrent-rasterbar-${version}.tar.gz"
|
|
checksum=8133bf683308decc24da22aff17437e36c522d8959bcf934e94cf7a3a567f3a9
|
|
|
|
pre_configure() {
|
|
export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python2.7"
|
|
export PYTHON_CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python2.7"
|
|
export PYTHON_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython2.7"
|
|
autoreconf -fi
|
|
}
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
libtorrent-rasterbar-python_package() {
|
|
lib32disabled=yes
|
|
short_desc+=" - Python2 bindings"
|
|
pkg_install() {
|
|
vmove usr/lib/python2*
|
|
}
|
|
}
|
|
libtorrent-rasterbar-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision} libressl-devel boost-devel geoip-devel"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/*.a
|
|
}
|
|
}
|