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
|
2024-02-25 23:47:16 +00:00
|
|
|
pkgver=3.1.0
|
2024-02-26 12:49:19 +00:00
|
|
|
pkgrel=2
|
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'
|
2024-02-25 23:47:16 +00:00
|
|
|
license=(LGPL-3.0-only)
|
2023-10-22 15:25:23 +00:00
|
|
|
depends=(cblas
|
|
|
|
glibc
|
|
|
|
gmp
|
|
|
|
mpfr)
|
|
|
|
makedepends=(cmake
|
|
|
|
python)
|
|
|
|
replaces=(antic
|
|
|
|
arb)
|
2024-02-25 23:47:16 +00:00
|
|
|
source=(http://www.flintlib.org/flint-$pkgver.tar.gz)
|
|
|
|
sha256sums=('b30df05fa81de49c20d460edccf8c410279d1cf8410f2d425f707b48280a2be2')
|
2020-06-05 23:49:21 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cmake -B build -S $pkgname-$pkgver \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
2024-02-26 12:49:19 +00:00
|
|
|
-DHAS_FLAG_GCC_MARCH_NATIVE=OFF \
|
2020-06-05 23:49:21 +00:00
|
|
|
-DIPO_SUPPORTED=FALSE
|
|
|
|
cmake --build build
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
|
|
}
|