mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
add raxml-ng
This commit is contained in:
parent
360292a76d
commit
7c8339b298
3 changed files with 45 additions and 0 deletions
27
raxml-ng/PKGBUILD
Normal file
27
raxml-ng/PKGBUILD
Normal file
|
@ -0,0 +1,27 @@
|
|||
# Maintainer: Guoyi ("malcology") <guoyizhang@malacology.net>
|
||||
# Contributor: Guoyi ("malcology") <guoyizhang@malacology.net>
|
||||
# Contributor: Roberto Rossini ("robymetallo") <roberros@insert_university_of_oslo_domain.no>
|
||||
|
||||
pkgname=raxml-ng
|
||||
pkgver=1.0.3
|
||||
_commit=411611611793e53c992717d869ca64370f2e4789
|
||||
pkgrel=1
|
||||
pkgdesc="A phylogenetic tree inference tool which uses maximum-likelihood (ML) optimality criterion"
|
||||
url='https://github.com/amkozlov/raxml-ng'
|
||||
arch=('x86_64')
|
||||
license=('AGPL3')
|
||||
depends=('gcc-libs')
|
||||
makedepends=('bison' 'cmake' 'flex' 'git' 'gmp')
|
||||
checkdepends=('gmock' 'gtest')
|
||||
source=("https://github.com/amkozlov/raxml-ng/releases/download/${pkgver}/raxml-ng_v${pkgver}_linux_x86_64_MPI.zip")
|
||||
sha256sums=('62e56d0249488b450d48d89ba63c0c56dae02f3de896d03c06352a39bc576798')
|
||||
|
||||
prepare() {
|
||||
cd "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}"
|
||||
./install.sh
|
||||
install -Dm755 "${srcdir}/bin/raxml-ng-mpi" "${pkgdir}/usr/bin/${pkgname}"
|
||||
}
|
10
raxml-ng/lilac.py
Normal file
10
raxml-ng/lilac.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
update_pkgver_and_pkgrel(_G.newver.lstrip('v'))
|
||||
|
||||
def post_build():
|
||||
git_add_files('PKGBUILD')
|
||||
git_commit()
|
8
raxml-ng/lilac.yaml
Normal file
8
raxml-ng/lilac.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: starsareintherose
|
||||
email: starsareintherose@outlook.com
|
||||
update_on:
|
||||
- source: github
|
||||
github: amkozlov/raxml-ng
|
||||
use_latest_release: true
|
Loading…
Add table
Reference in a new issue