# Maintainer: Andrew O'Neill # Contributor: Christian Krause ("wookietreiber") pkgname=bcftools pkgver=1.10.2 pkgrel=1 pkgdesc='A program for variant calling and manipulating files in the Variant Call Format (VCF) and its binary counterpart BCF' arch=('x86_64') url='https://samtools.github.io/bcftools' license=('GPL') depends=('gsl' 'htslib' 'python-matplotlib' 'python') source=("https://github.com/samtools/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.bz2") sha256sums=('f57301869d0055ce3b8e26d8ad880c0c1989bf25eaec8ea5db99b60e31354e2c') build() { cd "${pkgname}-${pkgver}" ./configure \ --prefix=/usr \ --enable-libgsl \ --with-bcf-plugin-dir=/usr/lib/${pkgname} \ --with-cblas=gslcblas \ --with-htslib=system make } package() { cd "${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install }