diff options
author | Christian Krause | 2016-04-22 10:46:53 +0200 |
---|---|---|
committer | Christian Krause | 2016-04-22 10:46:53 +0200 |
commit | d311970500a81f9323567d712a57a793919861a5 (patch) | |
tree | 4d75207b675d887c4c161ad15f993ef9667e22a1 | |
parent | 76793cf18b9b38de0b99a349c879f7a567c803d4 (diff) | |
download | aur-d311970500a81f9323567d712a57a793919861a5.tar.gz |
include plugins and curl
-rw-r--r-- | .SRCINFO | 5 | ||||
-rw-r--r-- | PKGBUILD | 10 |
2 files changed, 10 insertions, 5 deletions
@@ -1,13 +1,14 @@ # Generated by mksrcinfo v8 -# Sun Jan 10 09:47:13 UTC 2016 +# Fri Apr 22 08:46:32 UTC 2016 pkgbase = htslib pkgdesc = library for high-throughput sequencing data formats pkgver = 1.3 - pkgrel = 1 + pkgrel = 2 url = https://github.com/samtools/htslib arch = i686 arch = x86_64 license = custom + depends = curl depends = zlib provides = tabix conflicts = tabix @@ -2,12 +2,12 @@ pkgname=htslib pkgver=1.3 -pkgrel=1 +pkgrel=2 pkgdesc="library for high-throughput sequencing data formats" arch=('i686' 'x86_64') url="https://github.com/samtools/htslib" license=('custom') -depends=('zlib') +depends=('curl' 'zlib') provides=('tabix') replaces=('tabix') conflicts=('tabix') @@ -17,7 +17,11 @@ md5sums=('39d475730a66401e4d45398c95c414f7') build() { cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr + ./configure \ + --prefix=/usr \ + --enable-libcurl \ + --enable-plugins \ + --with-plugin-dir=/usr/lib/htslib/plugins make } |