Package Details: blis-git 0.9.0.r134.ga72e4569f-1

Git Clone URL: https://aur.archlinux.org/blis-git.git (read-only, click to copy)
Package Base: blis-git
Description: BLAS-like Library Instantiation Software Framework
Upstream URL: https://github.com/flame/blis
Licenses: custom
Conflicts: blas, blis, cblas
Provides: blas, blis, cblas
Submitter: haawda
Maintainer: Chocobo1
Last Packager: Chocobo1
Votes: 1
Popularity: 0.000000
First Submitted: 2017-05-29 13:59 (UTC)
Last Updated: 2024-01-08 19:33 (UTC)

Dependencies (3)

Required by (258)

Sources (1)

Latest Comments

dviktor commented on 2019-10-05 17:44 (UTC)

I suggest you to change your PKGBUILD to enable some performance features and to conform with Arch standards even more. You can use my template below:

pkgname=blis-git
pkgver=r1715.702486b1
pkgrel=1
pkgdesc="BLAS-like Library Instantiation Software Framework"
arch=('i686' 'x86_64')
license=('custom')
url="https://github.com/flame/blis"
makedepends=('git' 'make' 'gcc' 'python')
provides=('blis')
conflicts=('blis')
source=("$pkgname::git+https://github.com/flame/blis.git")
sha1sums=('SKIP')
options=('staticlibs')

pkgver() {
  cd "${pkgname}"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd "${pkgname}"

  # static build is necessary for some packages and programs (e. g. GAMESS)
  ./configure --prefix=/usr --enable-static --enable-shared --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"
}