29 lines
874 B
Bash
29 lines
874 B
Bash
# Template file for 'primesieve'
|
|
pkgname=primesieve
|
|
version=12.3
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DBUILD_TESTS=ON -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=OFF"
|
|
short_desc="Fast prime number generator"
|
|
maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://github.com/kimwalisch/primesieve"
|
|
changelog="https://raw.githubusercontent.com/kimwalisch/primesieve/master/ChangeLog"
|
|
distfiles="https://github.com/kimwalisch/primesieve/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=147105d9d41a17a9eee0640182c106454ec48b0d1bf54ced7b2b9ddad8a0f8b4
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
primesieve-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision} ${makedepends}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/cmake
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|