diff options
author | BioArchLinuxBot | 2023-05-16 03:21:55 +0000 |
---|---|---|
committer | BioArchLinuxBot | 2023-05-16 03:21:55 +0000 |
commit | 97150473e615e6bf3ecafd4fcc7060f149519aeb (patch) | |
tree | bf486294647e05870451787d2b05fa8491f03cec | |
parent | 8fd63da90c21744616aaef156107bd5690cdd226 (diff) | |
download | aur-97150473e615e6bf3ecafd4fcc7060f149519aeb.tar.gz |
[lilac] updated to 1.6.0-3
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 17 |
2 files changed, 9 insertions, 10 deletions
@@ -1,7 +1,7 @@ pkgbase = btllib pkgdesc = Bioinformatics Technology Lab common code library https://doi.org/10.21105/joss.04720 pkgver = 1.6.0 - pkgrel = 2 + pkgrel = 3 url = https://github.com/bcgsc/btllib arch = any license = GPL3 @@ -1,6 +1,6 @@ pkgname=btllib pkgver=1.6.0 -pkgrel=2 +pkgrel=3 pkgdesc="Bioinformatics Technology Lab common code library https://doi.org/10.21105/joss.04720" arch=(any) url="https://github.com/bcgsc/btllib" @@ -15,15 +15,14 @@ prepare() { git submodule update --init --recursive } -#build() { -# cd $srcdir/$pkgname -# arch-meson build \ -# --buildtype release -# ninja -C build -#} +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 + DESTDIR="${pkgdir}" ninja -C build install } |