summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1aa3528b13c83c0a5f2f1f4ab27cc0107ec9a29a (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
pkgname=btllib
pkgver=1.6.0
pkgrel=3
pkgdesc="Bioinformatics Technology Lab common code library https://doi.org/10.21105/joss.04720"
arch=(any)
url="https://github.com/bcgsc/btllib"
license=(GPL3)
depends=('gcc-libs' 'samtools' 'python')
makedepends=('meson' 'ninja' 'cmake' 'git' 'doxygen' 'swig')
source=("git+$url.git#tag=v$pkgver")
md5sums=('SKIP')

prepare() {
  cd $srcdir/$pkgname
  git submodule update --init --recursive
}

build() {
  cd $srcdir/$pkgname
  arch-meson build \
  --buildtype      release
  ninja -C build
}

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