summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 624b4d809be21c8070f00d30076544ac9f86773d (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
# Maintainer: Joey Dumont <joey.dumont@gmail.com>
# Maintainer: McNoggins <gagnon88@gmail.com>
pkgname=complex_bessel
pkgver=0.7.0_beta
_pkgver=${pkgver/_/-}
pkgrel=1
pkgdesc="A C++ library to evaluate the Bessel functions of real order and complex argument."
arch=('x86_64')
url="https://github.com/valandil/complex_bessel"
license=('LGPL')
makedepends=('cmake' 'gcc-fortran')
depends=('gcc-libs')
source=("$pkgname-$_pkgver.tar.gz::https://github.com/joeydumont/complex_bessel/archive/v${_pkgver}.tar.gz")
sha256sums=('9ae999d7c3c9da633c24f5eb8b593376a5e7d777e941b203309c0b0ab48509cd')

build() {
  cd "$srcdir/$pkgname-$_pkgver"
  cmake -DCMAKE_INSTALL_PREFIX="$pkgdir"/usr/ .
  make
}

package() {
  cd "$srcdir/$pkgname-$_pkgver"
  make install
}