2020-06-05 23:49:21 +00:00
|
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
# Contributor: Rémy Oudompheng <oudomphe@clipper.ens.fr>
|
|
|
|
# Contributor: Alessandro "jakedust" Andrioni <jakedust@gmail.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - disable LTO via -DIPO_SUPPORTED=FALSE
|
|
|
|
|
|
|
|
pkgname=flint
|
2022-04-25 20:57:44 +00:00
|
|
|
pkgver=2.8.5
|
2021-07-23 18:00:43 +00:00
|
|
|
pkgrel=1
|
2021-06-21 12:35:47 +00:00
|
|
|
pkgdesc='A C library for doing number theory'
|
2020-06-05 23:49:21 +00:00
|
|
|
arch=(x86_64)
|
2021-06-21 12:35:47 +00:00
|
|
|
url='http://www.flintlib.org'
|
2020-06-05 23:49:21 +00:00
|
|
|
license=(GPL)
|
2020-12-21 03:25:18 +00:00
|
|
|
depends=(mpfr ntl cblas)
|
2020-06-05 23:49:21 +00:00
|
|
|
makedepends=(cmake python)
|
2021-06-21 12:35:47 +00:00
|
|
|
source=(http://www.flintlib.org/flint-$pkgver.tar.gz)
|
2022-04-25 20:57:44 +00:00
|
|
|
sha256sums=('5911fedff911100f15781f35e3a4fa934fe60e4aea02a8c10cc8918101c1eed8')
|
2020-06-05 23:49:21 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cmake -B build -S $pkgname-$pkgver \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DWITH_NTL=ON \
|
|
|
|
-DIPO_SUPPORTED=FALSE
|
|
|
|
cmake --build build
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
|
|
}
|