summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bc67108e56ba43a172765b1ba84b33cbd8a7a0e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Stefan Seemayer <mail@semicolonsoftware.de>
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')
source=(http://www.microbesonline.org/fasttree/FastTree.c)
md5sums=('12b8a25324e0e6e74c83abe7a8dc788c')

build() {
  cd "$srcdir/"
  gcc -DOPENMP -fopenmp -DUSE_DOUBLE -Wall -O3 -finline-functions -funroll-loops -o FastTree -lm FastTree.c
}

package() {
  install -Dm 755 $srcdir/FastTree $pkgdir/usr/bin/FastTree
}

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