2025-01-22 22:50:31 -05:00

29 lines
874 B
Bash

# Template file for 'primesieve'
pkgname=primesieve
version=12.6
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=677c1c5046e666a25e6248f3242c0b27a09953f2775fc4507e4a017a47059345
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"
}
}