blob: 2d78c6c5ffdffd67673a9350b2f85de9424b4b49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Maintainer: tuxzz <dorazzsoft@gmail.com>
pkgname=blis-cblas-openmp
pkgver=0.7.0
_blasver=3.9.0
pkgrel=0
pkgdesc="BLAS-like Library Instantiation Software Framework (providing blas and cblas, with OpenMP support, particularly recommended for AMD Zen CPUs)"
arch=('i686' 'x86_64')
license=('custom')
url="https://github.com/flame/blis"
makedepends=('git' 'make' 'gcc' 'python')
provides=('blis')
conflicts=('blis' 'blas' 'cblas')
provides=("blas=${_blasver}" "cblas=${_blasver}")
source=(
"$pkgname::git+https://github.com/flame/blis.git#commit=943a21def0bedc1732c0a2453afe7c90d7f62e95"
"cblas_f77.h"
"cblas_mangling.h"
"cblas_test.h"
"cblas.h"
)
sha1sums=(
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
)
options=('staticlibs' '!emptydirs')
build() {
cd "${pkgname}"
unset CC CXX CFLAGS CXXFLAGS
export CC="gcc"
export CXX="g++"
export CFLAGS="-pipe -Ofast -fno-plt -ftree-vectorize -flto -falign-functions=32 -fno-semantic-interposition -fipa-pta -fdevirtualize-at-ltrans -floop-nest-optimize -floop-strip-mine -floop-interchange -fgraphite-identity"
export CXXFALGS=${CFLAGS}
# static build is necessary for some packages and programs (e. g. GAMESS)
./configure --prefix=/usr --enable-static --enable-shared --enable-cblas --enable-threading=openmp auto
make
}
check() {
cd "${pkgname}"
make check
}
package() {
cd "${pkgname}"
make DESTDIR="${pkgdir}" install
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname%-git}/LICENSE"
install -Dm644 ${srcdir}/cblas_{f77,mangling,test}.h "${pkgdir}/usr/include/"
install -Dm644 ${srcdir}/cblas.h "${pkgdir}/usr/include/"
cd ${pkgdir}/usr/lib
# BLAS
ln -sv libblis.so libblas.so
ln -sv libblis.so libblas.so.3
ln -sv libblis.so libblas.so.3.9.0
# CBLAS
ln -sv libblis.so libcblas.so
ln -sv libblis.so libcblas.so.3
ln -sv libblis.so libcblas.so.3.9.0
}
|