26 lines
753 B
Plaintext
26 lines
753 B
Plaintext
# Description: A C++ bittorrent library.
|
|
# URL: https://www.rasterbar.com/products/libtorrent/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: boost python3-setuptools
|
|
|
|
name=libtorrent-rasterbar
|
|
version=2.0.8
|
|
release=1
|
|
source=(https://github.com/arvidn/libtorrent/releases/download/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cmake -S $name-$version -B build -G Ninja \
|
|
-D CMAKE_INSTALL_PREFIX=/usr \
|
|
-D CMAKE_INSTALL_LIBDIR=lib \
|
|
-D CMAKE_BUILD_TYPE=Release \
|
|
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
|
|
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
|
|
-D python-bindings=ON \
|
|
-D boost-python-module-name="python" \
|
|
-D python-egg-info=ON \
|
|
-Wno-dev
|
|
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|