2018-02-03 01:42:49 +00:00
|
|
|
# Template file for 'flintlib'
|
|
|
|
pkgname=flintlib
|
2021-10-02 20:43:11 +00:00
|
|
|
version=2.8.1
|
2018-02-03 01:42:49 +00:00
|
|
|
revision=1
|
|
|
|
wrksrc="flint-${version}"
|
|
|
|
build_style=configure
|
2021-10-02 20:43:11 +00:00
|
|
|
configure_args="--prefix=/usr --with-gmp=/usr --with-mpfr=/usr $(vopt_if ntl --with-ntl=/usr)"
|
|
|
|
makedepends="mpfr-devel $(vopt_if ntl ntl-devel)"
|
2018-02-03 01:42:49 +00:00
|
|
|
short_desc="Fast Library for Number Theory"
|
|
|
|
maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
|
|
|
|
license="LGPL-2.1-or-later"
|
|
|
|
homepage="https://flintlib.org"
|
|
|
|
distfiles="https://flintlib.org/flint-${version}.tar.gz"
|
2021-10-02 20:43:11 +00:00
|
|
|
checksum=edfdda7a7cb847db4e55e050349259cbc9778589686007fb45602d36ecfb427e
|
|
|
|
|
|
|
|
build_options="ntl"
|
|
|
|
desc_option_ntl="enable NTL support"
|
|
|
|
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
|
|
build_options_default+=" ntl"
|
|
|
|
fi
|
2018-02-03 01:42:49 +00:00
|
|
|
|
|
|
|
CFLAGS="-D_GNU_SOURCE" # needed for cpu_set_t
|
|
|
|
|
|
|
|
flintlib-devel_package() {
|
|
|
|
depends="${sourcepkg}>=${version}_${revision} mpfr-devel"
|
|
|
|
short_desc+=" - development files"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove "usr/lib/*.a"
|
|
|
|
vmove "usr/lib/*.so"
|
|
|
|
}
|
|
|
|
}
|