33 lines
949 B
Bash
33 lines
949 B
Bash
# Template file for 'primesieve'
|
|
pkgname=primesieve
|
|
version=8.0
|
|
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=9fba723221535dbf1e30c582c5009eeb032464704da01a0c8541d8cf2a698803
|
|
|
|
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
|
|
makedepends+=" libatomic-devel"
|
|
fi
|
|
|
|
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"
|
|
}
|
|
}
|