# Maintainer: Stefan Seemayer pkgname=fasttree pkgver=2.1.9 pkgrel=1 pkgdesc="Approximately-Maximum-Likelihood Trees for Large Alignments" arch=(i686 x86_64) url="http://www.microbesonline.org/fasttree/" license=('GPL') depends=( 'gcc' ) source=(http://www.microbesonline.org/fasttree/FastTree-${pkgver}.c) sha256sums=('f3a4e57d27e3fd6b5e2a4201b15ae25bc43858092eefef160f9aaa1011df5b52') build() { cd "$srcdir/" gcc -DOPENMP -fopenmp -DUSE_DOUBLE -Wall -O3 -finline-functions -funroll-loops -o FastTree -lm FastTree-${pkgver}.c } package() { install -Dm 755 $srcdir/FastTree $pkgdir/usr/bin/FastTree } # vim:set ts=2 sw=2 et: