# Maintainer: Joshua Haase 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: