PKGBUILDs/extra/pybind11/PKGBUILD

64 lines
2.4 KiB
Bash
Raw Normal View History

2019-06-21 18:51:56 +00:00
# Maintainer : Daniel Bermond <dbermond@archlinux.org>
2018-11-20 00:50:29 +00:00
# Maintainer : Santiago Torres-Arias <santiago@archlinux.org>
# Contributor: Matthew Ellison <matt+aur@arroyonetworks.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2020-10-29 14:04:52 +00:00
# - disable lto via -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF
2018-11-20 00:50:29 +00:00
pkgname=pybind11
2023-03-18 15:47:01 +00:00
pkgver=2.10.4
2023-05-03 19:18:43 +00:00
pkgrel=3
2018-11-20 00:50:29 +00:00
pkgdesc='A lightweight header-only library that exposes C++ types in Python and vice versa'
arch=('any')
url='https://pybind11.readthedocs.org/'
license=('BSD')
2023-03-01 01:06:27 +00:00
optdepends=('python-setuptools: for python bindings')
makedepends=('cmake' 'boost' 'catch2' 'eigen' 'python-setuptools' 'python-pytest')
2020-10-29 02:10:18 +00:00
#'python-sphinx' 'python-sphinx_rtd_theme' 'python-breathe')
2021-01-27 23:05:55 +00:00
checkdepends=('python-numpy' 'python-scipy')
2021-08-04 03:19:31 +00:00
source=("https://github.com/pybind/pybind11/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
2023-03-18 15:47:01 +00:00
sha256sums=('832e2f309c57da9c1e6d4542dedd34b24e4192ecb4d62f6f4866a737454c9970')
2018-11-20 00:50:29 +00:00
build () {
cd "${pkgname}-${pkgver}"
python setup.py build
2020-10-29 02:10:18 +00:00
# tests
cmake \
-B "${srcdir}/build-cmake" \
-S "${srcdir}/${pkgname}-${pkgver}" \
2023-03-01 01:06:27 +00:00
-G 'Unix Makefiles' \
2020-10-29 02:10:18 +00:00
-DCMAKE_BUILD_TYPE:STRING='None' \
-DCMAKE_INSTALL_PREFIX:PATH='/usr' \
2020-10-29 14:04:52 +00:00
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF \
2020-10-29 02:10:18 +00:00
-Wno-dev
make -C "${srcdir}/build-cmake" all mock_install
2018-11-20 00:50:29 +00:00
2021-07-18 21:25:48 +00:00
# manpage (needs python-sphinxcontrib-{moderncmakedomain,svg2pdfconverter})
2020-10-29 02:10:18 +00:00
# make -C "${srcdir}/${pkgname}-${pkgver}/docs" man
2018-11-20 00:50:29 +00:00
}
check() {
2020-10-29 02:10:18 +00:00
make -C build-cmake check
2018-11-20 00:50:29 +00:00
}
package() {
cd "${pkgname}-${pkgver}"
2020-10-29 02:10:18 +00:00
python setup.py install --root="$pkgdir" --skip-build --optimize='1'
2018-11-20 00:50:29 +00:00
2020-10-29 02:10:18 +00:00
# symlinks
local _pyver
_pyver="$(python -c 'import sys; print("%s.%s" %sys.version_info[0:2])')"
2023-03-01 01:06:27 +00:00
install -d -m755 "${pkgdir}/usr"/{include,lib/{cmake,pkgconfig}}
2020-10-29 02:10:18 +00:00
ln -s "../lib/python${_pyver}/site-packages/pybind11/include/pybind11" "${pkgdir}/usr/include/pybind11"
2021-04-17 19:29:41 +00:00
ln -s "../../lib/python${_pyver}/site-packages/pybind11/share/cmake/pybind11" "${pkgdir}/usr/lib/cmake/pybind11"
2023-03-01 01:06:27 +00:00
ln -s "../../lib/python${_pyver}/site-packages/pybind11/share/pkgconfig/pybind11.pc" "${pkgdir}/usr/lib/pkgconfig/pybind11.pc"
2018-11-20 00:50:29 +00:00
2019-06-21 18:51:56 +00:00
# man page
2020-10-29 02:10:18 +00:00
# install -D -m644 "docs/.build/man/${pkgname}.1" "${pkgdir}/usr/share/man/man7/${pkgname}.7"
# sed -i '/^\.TH/s/"1"/"7"/' "${pkgdir}/usr/share/man/man7/${pkgname}.7"
2018-11-20 00:50:29 +00:00
# license
install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}