abyss: add lib link

This commit is contained in:
Kuoi 2023-05-13 00:17:12 +08:00 committed by GitHub
parent 4659d94575
commit 3cc4d8b2b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,10 +9,11 @@ pkgdesc="Assembly By Short Sequences - a de novo, parallel, paired-end sequence
arch=("i686" "x86_64")
url="https://github.com/bcgsc/abyss"
license=("GPL3")
depends=("openmpi" "samtools")
depends=("openmpi" "make")
makedepends=("boost" "sparsehash" "make" "btllib")
optdepends=(
'pigz: for parallel gzip'
'samtools: for reading SAM files'
)
source=("$pkgname-$pkgver.tar.gz::https://github.com/bcgsc/abyss/archive/$pkgver.tar.gz")
sha512sums=('1853e2d4d577abf7d0e8ce70e944846e5ad67afcd1f0a1a4b9944047c7e8ebc1dbdd8639b9d99d4b8ce5c84c8fa42638bb16bf02825e9c660bcac133662ec553')
@ -20,7 +21,7 @@ sha512sums=('1853e2d4d577abf7d0e8ce70e944846e5ad67afcd1f0a1a4b9944047c7e8ebc1dbd
build() {
cd "${pkgname}-${pkgver}"
./autogen.sh
./configure --prefix=/usr --with-boost=/usr/lib --with-mpi=/usr/lib/openmpi --with-sparsehash=/usr/lib --without-sqlite --disable-werror
./configure --prefix=/usr --with-boost=/usr/lib --with-mpi=/usr/lib/openmpi --with-sparsehash=/usr/lib --with-btllib=/usr/lib --without-sqlite --disable-werror
make
}