# Maintainer: Antonio Rojas # Contributor: Rémy Oudompheng # Contributor: Alessandro "jakedust" Andrioni # ALARM: Kevin Mihelich # - disable LTO via -DIPO_SUPPORTED=FALSE pkgname=flint pkgver=2.7.0 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=('919a722e33b83bb8dad2231fee97caaa40d028ff9c88ee2be645667f3c472f3a') 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 }