1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/py3-pybind11/APKBUILD
2019-11-05 15:33:57 +00:00

58 lines
1.4 KiB
Text

# Maintainer: Carlo Landmeter <clandmeter@alpinelinux.org>
pkgname=py3-pybind11
_pkgname=pybind11
pkgver=2.4.3
pkgrel=1
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
mkdir -p "$builddir"/build-cmake
cd "$builddir"/build-cmake
cmake .. \
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
-DCMAKE_INSTALL_PREFIX=/usr \
-DUSE_PYTHON_INCLUDE_DIR=FALSE
make
}
check() {
make -C build-cmake check
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir" \
--install-headers=/usr/include/pybind11 --skip-build
DESTDIR="$pkgdir" make -C build-cmake install
}
dev() {
depends_dev="$pkgname"
default_dev
}
sha512sums="993b9a00fb9a4280d5500f8bae2b1238c026c1635862307c7b06ac0d26c3a9743d9c69658190decd126d0de45353a51c4b354bcc023345a05fce0bdc52b56fe0 py3-pybind11-2.4.3.tar.gz"