blob: 6b0d0323cd7048596cb6f487b7fd0c4b9a6cc158 (
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
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=blis
pkgver=0.9.0
pkgrel=3
pkgdesc="BLAS-like Library Instantiation Software Framework"
arch=('i686' 'x86_64')
url="https://github.com/flame/blis"
license=('custom')
depends=('gcc-libs')
makedepends=('python')
provides=('blas' 'cblas')
conflicts=('blas' 'cblas')
options=('staticlibs')
source=("$pkgname-$pkgver-src.tar.gz::https://github.com/flame/blis/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('1135f664be7355427b91025075562805cdc6cc730d3173f83533b2c5dcc2f308')
build() {
cd "$pkgname-$pkgver"
./configure \
--prefix="/usr" \
--enable-cblas \
--enable-threading=openmp auto
make
}
check() {
cd "$pkgname-$pkgver"
#make check
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/blis"
}
|