mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
64 lines
1.6 KiB
Text
64 lines
1.6 KiB
Text
# Maintainer: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
pkgname=py3-pybind11
|
|
_pkgname=pybind11
|
|
pkgver=2.6.2
|
|
pkgrel=2
|
|
pkgdesc="Seamless operability between C++11 and Python"
|
|
url="https://github.com/pybind/pybind11"
|
|
arch="noarch"
|
|
license="MPL-2.0"
|
|
makedepends="
|
|
python3-dev
|
|
py3-setuptools
|
|
cmake
|
|
boost-dev
|
|
"
|
|
checkdepends="
|
|
py3-pytest
|
|
"
|
|
subpackages="$pkgname-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/pybind/pybind11/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
replaces="py-pybind11" # Backwards compatibility
|
|
provides="py-pybind11=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
# fails to build with fortify headers enabled
|
|
# https://github.com/pybind/pybind11/issues/1650
|
|
export CXXFLAGS="$CXXFLAGS -U_FORTIFY_SOURCE"
|
|
|
|
python3 setup.py build
|
|
|
|
if [ "$CBUILD" != "$CHOST" ]; then
|
|
CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
|
|
fi
|
|
cmake -B build . \
|
|
-DCMAKE_BUILD_TYPE=None \
|
|
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DUSE_PYTHON_INCLUDE_DIR=FALSE \
|
|
$CMAKE_CROSSOPTS .
|
|
make -C build
|
|
}
|
|
|
|
check() {
|
|
make -C build check
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir" \
|
|
--install-headers=/usr/include/pybind11 --skip-build
|
|
|
|
make -C build DESTDIR="$pkgdir" install
|
|
|
|
mkdir -p "$pkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/share/cmake "$pkgdir"/usr/lib
|
|
}
|
|
|
|
dev() {
|
|
depends_dev="$pkgname"
|
|
default_dev
|
|
}
|
|
|
|
sha512sums="1eb346ff6b8f827053265340925e2c8038b1e2a89c352fc09f15ebe86128e7ba1f48c4368b193941f034b30bee7f72a94343e05d4841fdbbd0e4d91ed3d32025 py3-pybind11-2.6.2.tar.gz"
|