summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD10
2 files changed, 10 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 06ca2082d247..b2d1b36aed1c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -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
diff --git a/PKGBUILD b/PKGBUILD
index 2a9e181e4768..5e395826e84b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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
}