void-packages/srcpkgs/primecount/template
2021-12-21 14:16:24 +01:00

35 lines
957 B
Bash

# Template file for 'primecount'
pkgname=primecount
version=7.2
revision=1
build_style=cmake
configure_args="-DBUILD_TESTS=ON -DBUILD_LIBPRIMESIEVE=OFF
-DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=OFF"
makedepends="primesieve-devel libgomp-devel"
short_desc="Fast prime counting function"
maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
license="BSD-2-Clause"
homepage="https://github.com/kimwalisch/primecount/"
distfiles="https://github.com/kimwalisch/primecount/archive/refs/tags/v${version}.tar.gz"
checksum=54c1eec33e665a780002dda20cf39ba0cefa8e846fdeda44734fb2265cba9257
build_options="native_build"
if [ -z "$build_option_native_build" ]; then
configure_args+=" -DWITH_POPCNT=OFF"
fi
post_install() {
vlicense COPYING
}
primecount-devel_package() {
depends="${sourcepkg}>=${version}_${revision} ${makedepends}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
}
}