updated on Sun Jan 22 16:00:49 UTC 2012
[aur-mirror.git] / fplll / PKGBUILD
blob8806638879b4cc240ee3fbd4539e681e02d943ed
1 # Contributor: Rémy Oudompheng <oudomphe@clipper.ens.fr>
3 pkgname=fplll
4 pkgver=3.0.12
5 pkgrel=1
6 pkgdesc="Implementation of a floating-point LLL algorithm"
7 arch=('i686' 'x86_64')
8 url="http://perso.ens-lyon.fr/damien.stehle/"
9 license=('LGPL')
10 depends=('gmp' 'mpfr')
11 source=(http://perso.ens-lyon.fr/damien.stehle/downloads/libfplll-$pkgver.tar.gz)
13 build() {
14   cd "$startdir/src/libfplll-$pkgver"
16   ./configure --prefix=/usr 
17   make || return 1
18   make DESTDIR="$startdir/pkg" install
20   mkdir -p "$pkgdir/usr/include/fplll"
21   mv "$pkgdir"/usr/include/*.h "$pkgdir/usr/include/fplll/"
22   mv "$pkgdir"/usr/include/*.cpp "$pkgdir/usr/include/fplll/"
25 md5sums=('3b1cf0f3c4bcbe8b40da3d14c8029c58')