PKGBUILDs/community/eclib/PKGBUILD

32 lines
799 B
Bash
Raw Normal View History

2015-12-26 15:38:52 +00:00
# $Id$
# Maintainer: Antonio Rojas <arojas@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - libpthread is getting missed in link deps, specify in LDFLAGS
pkgname=eclib
2016-07-20 15:00:35 +00:00
pkgver=20160720
2016-11-20 15:28:06 +00:00
pkgrel=9
2015-12-26 15:38:52 +00:00
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 boost-libs)
makedepends=(boost)
source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz")
2016-07-20 15:00:35 +00:00
md5sums=('6ba0a5b73184b2f36b7d52bc2d8a0338')
2015-12-26 15:38:52 +00:00
build() {
cd $pkgname-$pkgver
LDFLAGS+=" -lpthread"
./autogen.sh
./configure --prefix=/usr --with-flint=/usr
make
}
package() {
cd $pkgname-$pkgver
make install DESTDIR="$pkgdir"
}