blob: 7d5a8b75e8a73af2eddad2bf6e450fe537968980 (
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
|
pkgname=btllib
pkgver=1.6.0
pkgrel=2
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
./compile --prefix=$pkgdir/usr
# DESTDIR="${pkgdir}" ninja -C build install
}
|