# $Id: PKGBUILD 144937 2015-10-24 18:31:33Z arojas $
# Maintainer: Antonio Rojas <arojas@archlinux.org>

pkgname=eclib
pkgver=20150827
pkgrel=2
pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular symbol code used to create the elliptic curve database"
arch=(i686 x86_64)
url="https://github.com/JohnCremona/eclib/"
license=(GPL)
depends=(flint pari-sage)
source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz")
md5sums=('6a9d3b001a7035697079fb08c420e4a3')

build() {
  cd $pkgname-$pkgver
  ./autogen.sh
  ./configure --prefix=/usr --with-flint=/usr
  make
}

package() {
  cd $pkgname-$pkgver
  make install DESTDIR="$pkgdir"
}

