blob: a4977f2a7d8ea692a1fd819d04f0bf2ec0cca013 (
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
|
# Maintainer: Michael Schubert <mschu.dev at gmail> github.com/mschubert/PKGBUILDs
# Contributor: Mick Elliot <micke at sfu dot ca>
pkgname=phyml
pkgver=3.3.20220408
pkgrel=1
epoch=1
pkgdesc="Builds phylogenies from DNA or protein sequences using a maximum likelihood approach"
arch=('i686' 'x86_64')
url="https://github.com/stephaneguindon/phyml"
license=('GPL2')
source=($pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz)
sha256sums=('9cef375c0186e8a8d4db72ac02148707624c97174ffac244167a138ceb9f65bd')
build() {
cd "$srcdir/phyml-$pkgver"
./autogen.sh
./configure --prefix=/usr --enable-phyml
make
}
package() {
cd "$srcdir/phyml-$pkgver"
make DESTDIR="$pkgdir" install
}
|