Date: Tuesday, January 19, 2016 @ 17:15:55 Author: arojas Revision: 157690
Update to 20160107 Modified: libfplll/trunk/PKGBUILD ----------+ PKGBUILD | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2016-01-19 16:12:18 UTC (rev 157689) +++ PKGBUILD 2016-01-19 16:15:55 UTC (rev 157690) @@ -2,26 +2,24 @@ # Maintainer: Antonio Rojas <[email protected]> pkgname=libfplll -pkgver=4.0.4 -pkgrel=2 +pkgver=20160107 +pkgrel=1 pkgdesc="Implementations of the floating-point LLL reduction algorithm for euclidean lattices" -arch=('i686' 'x86_64') +arch=(i686 x86_64) url="https://github.com/dstehle/fplll" -license=('LGPL') -depends=('mpfr') -#source=("http://perso.ens-lyon.fr/damien.stehle/fplll/$pkgname-$pkgver.tar.gz") -#source=("http://www.sagemath.org/packages/upstream/libfplll/$pkgname-$pkgver.tar.bz2") -source=("http://mirrors.mit.edu/sage/spkg/upstream/libfplll/$pkgname-$pkgver.tar.bz2") -md5sums=('db4b1aa57ff3068992d4ea2ab5371a9e') +license=(LGPL) +depends=(mpfr qd) +source=("http://mirrors.mit.edu/sage/spkg/upstream/$pkgname/$pkgname-$pkgver.tar.bz2") +md5sums=('281bbe2b95572401b6cd5264b5694863') build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr - make + cd src + ./configure --prefix=/usr + make } package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install + cd src + make DESTDIR="$pkgdir" install }
