summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD9
2 files changed, 11 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c7cb7076681d..3ac3bf7b5723 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,19 +1,21 @@
# Generated by mksrcinfo v8
-# Tue Sep 13 18:05:58 UTC 2016
+# Tue Mar 14 06:01:58 UTC 2017
pkgbase = htslib
pkgdesc = library for high-throughput sequencing data formats
- pkgver = 1.3.2
+ pkgver = 1.4
pkgrel = 1
url = https://github.com/samtools/htslib
arch = i686
arch = x86_64
license = custom
+ depends = bzip2
depends = curl
+ depends = xz
provides = tabix
conflicts = tabix
replaces = tabix
- source = https://github.com/samtools/htslib/releases/download/1.3.2/htslib-1.3.2.tar.bz2
- md5sums = 64742a2a812da1bb6eb4417128be6944
+ source = https://github.com/samtools/htslib/releases/download/1.4/htslib-1.4.tar.bz2
+ md5sums = 2a22ff382654c033c40e4ec3ea880050
pkgname = htslib
diff --git a/PKGBUILD b/PKGBUILD
index 942eaefe4664..01e64b44ce8f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,18 +1,17 @@
-# Maintainer: Christian Krause ("wookietreiber") <kizkizzbangbang@googlemail.com>
+# Maintainer: Christian Krause ("wookietreiber") <christian.krause@mailbox.org>
pkgname=htslib
-pkgver=1.3.2
+pkgver=1.4
pkgrel=1
pkgdesc="library for high-throughput sequencing data formats"
arch=('i686' 'x86_64')
url="https://github.com/samtools/htslib"
license=('custom')
-depends=('curl')
+depends=('bzip2' 'curl' 'xz')
provides=('tabix')
replaces=('tabix')
conflicts=('tabix')
source=(https://github.com/samtools/htslib/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('64742a2a812da1bb6eb4417128be6944')
build() {
cd $srcdir/$pkgname-$pkgver
@@ -42,3 +41,5 @@ package() {
# htslib shared library comes installed as 0644
chmod +x $pkgdir/usr/lib/libhts.so.*.*
}
+
+md5sums=('2a22ff382654c033c40e4ec3ea880050')