[arch-commits] Commit in linbox/repos (2 files)
Antonio Rojas
arojas at archlinux.org
Sun May 12 14:57:09 UTC 2019
Date: Sunday, May 12, 2019 @ 14:57:08
Author: arojas
Revision: 466577
archrelease: copy trunk to community-testing-x86_64
Added:
linbox/repos/community-testing-x86_64/
linbox/repos/community-testing-x86_64/PKGBUILD
(from rev 466576, linbox/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: linbox/repos/community-testing-x86_64/PKGBUILD (from rev 466576, linbox/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2019-05-12 14:57:08 UTC (rev 466577)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas < nqn76sw at gmail.com >
+
+pkgname=linbox
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="A template library for exact, high-performance linear algebra computation with dense, sparse, and structured matrices over the integers and over finite fields"
+arch=(x86_64)
+url="http://linalg.org/"
+license=(LGPL)
+depends=(fflas-ffpack)
+makedepends=(m4rie flint iml fplll)
+source=("https://github.com/linbox-team/linbox/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz")
+sha256sums=('2024d7dd8779eb1808244f4063e5bdc745a27268db4de29bbef0dff086bca4b6')
+
+build() {
+ cd $pkgname-$pkgver
+
+ ./configure --prefix=/usr --enable-sage --with-fplll=/usr \
+ --disable-sse3 --disable-ssse3 --disable-sse41 --disable-sse42 --disable-avx --disable-avx2 --disable-fma
+ #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+ make
+}
+
+check() {
+ cd $pkgname-$pkgver
+# make check
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list