summaryrefslogtreecommitdiff
path: root/~xihh/blast/PKGBUILD
blob: 70ab81dcc87e9e1b48ea8738f9058f3cf9c499e0 (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
# Maintainer: Joshua Haase <hahj87@gmail.com>
pkgname='blast'
pkgver=2.2.25
pkgrel=1
pkgdesc="Basic Local Alignment Search Tool: BLAST finds regions of similarity between biological sequences"
arch=('i686' 'x86_64' 'mips64el')
url="http://blast.ncbi.nlm.nih.gov/Blast.cgi?CMD=Web&PAGE_TYPE=BlastHome"
license=('custom:Public_Domain')
makedepends=()
depends=()
optdepends=()
source=("ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/$pkgver/ncbi-blast-$pkgver+-src.tar.gz")
md5sums=('01256b808e3af49a5087945b6a8c8293')

build() {
  cd "$srcdir/ncbi-blast-${pkgver}+-src/c++"
  ./configure --prefix=/usr
  make
}

check() {
  cd "$srcdir/ncbi-blast-${pkgver}+-src/c++"
  make -k check
}

package() {
  cd "$srcdir/ncbi-blast-${pkgver}+-src/c++"
  make DESTDIR="$pkgdir/" install
}

# vim:set ts=2 sw=2 et: