void-packages/srcpkgs/primesieve/template

29 lines
874 B
Bash

# Template file for 'primesieve'
pkgname=primesieve
version=12.5
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=20b06975a909dd58b956445948f7460086d8b49f2bc58880eac56400dcc66d64
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"
}
}