From e120430b4af4cba21a8f119bb3cc8c279a6b1711 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 19 Mar 2020 13:11:11 -0400 Subject: [PATCH] New package: python3-pybind11-2.5.0 --- srcpkgs/python3-pybind11/template | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 srcpkgs/python3-pybind11/template diff --git a/srcpkgs/python3-pybind11/template b/srcpkgs/python3-pybind11/template new file mode 100644 index 0000000000..337a44dbe1 --- /dev/null +++ b/srcpkgs/python3-pybind11/template @@ -0,0 +1,31 @@ +# Template file for 'python3-pybind11' +pkgname=python3-pybind11 +version=2.5.0 +revision=1 +archs=noarch +wrksrc="pybind11-${version}" +build_style=python3-module +make_install_args="--install-headers=/usr/include/pybind11" +hostmakedepends="python3-setuptools + python3-pytest python3-sphinx_rtd_theme python3-breathe" +depends="python3-devel" +short_desc="C++ header-only library to produce Python bindings" +maintainer="Andrew J. Hesford " +license="BSD-3-Clause" +homepage="https://github.com/pybind/pybind11" +distfiles="https://github.com/pybind/pybind11/archive/v${version}.tar.gz" +checksum=97504db65640570f32d3fdf701c25a340c8643037c3b69aec469c10c93dc8504 + +post_build() { + # Build the man page + make $makejobs -C docs man +} + +post_install() { + vlicense LICENSE + + # Copy the man page, but make it section 7 + _manpage=docs/.build/man/pybind11.1 + vsed -i ${_manpage} -e '/^\.TH/ s/"1"/"7"/' + vman ${_manpage} pybind11.7 +}