mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
29 lines
688 B
Bash
29 lines
688 B
Bash
# Maintainer: James Spencer <james.s.spencer@gmail.com>
|
|
|
|
pkgname=sambamba
|
|
pkgver=1.0.1
|
|
pkgrel=1
|
|
pkgdesc="Tools for working with SAM/BAM data"
|
|
arch=('i686' 'x86_64')
|
|
url="http://lomereiter.github.io/sambamba"
|
|
license=('GPL-2.0-only')
|
|
depends=(lz4 liblphobos)
|
|
makedepends=(ldc python)
|
|
source=(https://github.com/biod/sambamba/archive/refs/tags/v${pkgver}.tar.gz)
|
|
sha256sums=('955a51a00be9122aa9b0c27796874bfdda85de58aa0181148ef63548ea5192b0')
|
|
|
|
build() {
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
install -Dm755 "bin/${pkgname}-${pkgver}" "${pkgdir}/usr/bin/${pkgname}"
|
|
|
|
}
|