blob: 62d8d273f92b95018326b4be68516ea63ec66fb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Maintainer: Andrew O'Neill <andrew at haunted dot sh>
# Contributor: Christopher Vittal ("viralstitch") <chris@vittal.dev>
pkgname=htslib
pkgver=1.22
pkgrel=1
pkgdesc='A C library for high-throughput sequencing data formats'
arch=('x86_64')
url="https://github.com/samtools/${pkgname}"
license=('MIT')
depends=('curl' 'zlib' 'openssl')
provides=('tabix')
replaces=('tabix')
conflicts=('tabix')
options=('staticlibs')
source=("${pkgname}-${pkgver}.tar.bz2::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
sha256sums=('6250c1df297db477516e60ac8df45ed75a652d1f25b0f37f12f5b17269eafde9')
build() {
cd "${pkgname}-${pkgver}"
CFLAGS+=" -ffat-lto-objects" ./configure \
--prefix=/usr \
--enable-libcurl \
--enable-plugins \
--with-plugin-dir=/usr/lib/htslib/plugins
make
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR=${pkgdir} install
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# htslib shared library comes installed as 0644
chmod +x ${pkgdir}/usr/lib/libhts.so.*.*
}
|