summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c95411cc95d07dbb6dfa6f57aba763562fa19e78 (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
# Maintainer: Igor Dyatlov <dyatlov.igor@protonmail.com>

pkgname=funkcio-git
pkgver=r62.6e06814
pkgrel=2
pkgdesc="Draw functions from points"
arch=('x86_64')
url="https://github.com/wbernard/funkcio"
license=('GPL3')
depends=('lapack' 'pybind11' 'python-numpy' 'python-scipy')
makedepends=('meson')
checkdepends=('appstream-glib')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=(git+$url.git)
sha256sums=('SKIP')

pkgver() {
  cd "${pkgname%-git}"
  ( set -o pipefail
    git describe --long 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  )
}

build() {
    arch-meson ${pkgname%-git} build
    meson compile -C build
}

package() {
  cd "$srcdir"
    DESTDIR="${pkgdir}" ninja -C build install
}