summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD7
2 files changed, 6 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9d723d6da8f7..c76fe7a04c07 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = blis-git
pkgdesc = BLAS-like Library Instantiation Software framework by the Science of High-Performance Computing Group
pkgver = 0.6.0.r55.g171f1006
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/flame/blis
arch = x86_64
license = custom:BSD
diff --git a/PKGBUILD b/PKGBUILD
index eb2a565c4819..ef9e0ef9a17d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=blis-git
pkgver=0.6.0.r55.g171f1006
-pkgrel=1
+pkgrel=2
pkgdesc="BLAS-like Library Instantiation Software framework by the Science of High-Performance Computing Group"
arch=('x86_64')
license=('custom:BSD')
@@ -23,7 +23,10 @@ pkgver() {
build() {
cd "${pkgname%-git}"
- CFLAGS+=" -fPIC" ./configure -p "${pkgdir}"/usr x86_64
+ CFLAGS+=" -fPIC" ./configure --prefix=/usr \
+ --enable-static \
+ --enable-shared \
+ --enable-threading=openmp auto
make BLIS_ENABLE_DYNAMIC_BUILD:=yes
}