# Maintainer: Michael Schubert github.com/mschubert/PKGBUILDs pkgname=htscodecs pkgver=1.2.1 _pkgver=${pkgver//./-} pkgrel=1 pkgdesc="Custom compression for sequencing formats, e.g. CRAM" arch=('i686' 'x86_64') url=https://github.com/samtools/htscodecs license=('BSD') depends=('bzip2' 'zlib') source=($pkgname-$pkgver.tar.gz::$url/releases/download/v$pkgver/htscodecs-$pkgver.tar.gz) sha256sums=('38af855d85c3848dc1438a413eea142a41e688b599e5d49e7161d7be04c60819') build() { cd "$srcdir/$pkgname-$pkgver" aclocal autoreconf --install ./configure --prefix=/usr make CFLAGS=-g } package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install }