summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d3c3cc871c8c5c4109692de9b2c75af14648e368 (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
41
42
43
# This is the PKGBUILD for sra-tools
# Maintainer: Aaron Baker <aa{last name}99{at}gmail{dt}org>

pkgname=sra-tools
pkgver=2.6.2
pkgrel=1
pkgdesc="The SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives."
arch=('x86_64')
url="http://www.ncbi.nlm.nih.gov/Traces/sra/"
depends=('libxml2' 'file' 'hdf5' 'ngs' 'ncbi-vdb')
optdepends=('fuse: mount remote genome reference files')
provides=('sra-tools')
license=('custom:PublicDomain')
source=("$pkgname-$pkgver.tar.gz::https://github.com/ncbi/sra-tools/archive/$pkgver.tar.gz")
sha256sums=('7aa1ec118486cd877bf2976818a3f319674584f3d04931a6ce2a92f6a9defbc1')

prepare(){
  cd $pkgname-$pkgver

  # sra-tools tries to link to hdf5 as a static library but Arch provides this as 
  # a dynamic library https://bbs.archlinux.org/viewtopic.php?id=208018
  sed -e 's/-shdf5/-lhdf5/' -i tools/pacbio-load/Makefile
}

build(){
  cd "${pkgname}-${pkgver}"
  ./configure --prefix="$pkgdir/usr/" --with-ngs-sdk-prefix=/usr --with-ncbi-vdb-sources="/usr/src/ncbi-vdb-$pkgver"
  make
}

check(){
  cd "${pkgname}-${pkgver}"
  make -k test
}

package(){
  cd "$pkgname-$pkgver"
  make "ROOT=$pkgdir" install

  # add the license
  mkdir -p "$pkgdir/usr/share/licenses/${pkgname}"
  cp "LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
}