30 lines
926 B
Bash
30 lines
926 B
Bash
# Template file for 'primecount'
|
|
pkgname=primecount
|
|
version=7.14
|
|
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/"
|
|
changelog="https://raw.githubusercontent.com/kimwalisch/primecount/master/ChangeLog"
|
|
distfiles="https://github.com/kimwalisch/primecount/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=d867ac18cc52c0f7014682169988a76f39e4cd56f8ce78fb56e064499b1d66bb
|
|
|
|
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"
|
|
}
|
|
}
|