# Maintainer: Antonio Rojas # Contributor: Rémy Oudompheng # Contributor: Alessandro "jakedust" Andrioni # ALARM: Kevin Mihelich # - disable LTO via -DIPO_SUPPORTED=FALSE pkgname=flint pkgver=2.8.5 pkgrel=1 pkgdesc='A C library for doing number theory' arch=(x86_64) url='http://www.flintlib.org' license=(GPL) depends=(mpfr ntl cblas) makedepends=(cmake python) source=(http://www.flintlib.org/flint-$pkgver.tar.gz) sha256sums=('5911fedff911100f15781f35e3a4fa934fe60e4aea02a8c10cc8918101c1eed8') 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 }