summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2db1f9f1dd01ac6f62cc302e56725271bd463c30 (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
44
45
46
47
48
49
50
51
52
53
# This is the PKGBUILD for sra-tools
# Maintainer: Aaron Baker <aa{last name}99{at}gmail{dt}org>
# Maintainer: Georgios Amanakis <g_amanakis{at}yahoo{dt}com>

pkgname=sra-tools
pkgver=2.10.0
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://github.com/ncbi/sra-tools/"
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"
	"sra-tools.patch")
sha256sums=('6d2b02bad674cde6b9677a522f62da092da5471d23738976abce8eae5710fa0c'
            '59c87371b10a3d8f7c1c8312c534ec9a6374cb3428ecbeb42c60cf422cab0782')

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
  patch -p1 -i ../sra-tools.patch
}

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

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

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

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