Date: Thursday, January 5, 2023 @ 22:13:56
Author: arojas
Revision: 1378406
archrelease: copy trunk to community-staging-x86_64
Added:
fplll/repos/community-staging-x86_64/
fplll/repos/community-staging-x86_64/PKGBUILD
(from rev 1378405, fplll/trunk/PKGBUILD)
----------+
PKGBUILD | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
Copied: fplll/repos/community-staging-x86_64/PKGBUILD (from rev 1378405,
fplll/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-01-05 22:13:56 UTC (rev 1378406)
@@ -0,0 +1,23 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=fplll
+pkgver=5.4.4
+pkgrel=1
+pkgdesc='Lattice algorithms using floating-point arithmetic'
+arch=(x86_64)
+url='https://github.com/fplll/fplll'
+license=(LGPL)
+depends=(mpfr qd)
+source=(https://github.com/fplll/fplll/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('0fd9d378f04ff886d8864728baf5d90b8b0b82c1e541e92550644fb54f75691d')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}