mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
raxml-light: init
This commit is contained in:
parent
8f7e274c70
commit
c09b841da9
3 changed files with 43 additions and 0 deletions
23
BioArchLinux/raxml-light/PKGBUILD
Normal file
23
BioArchLinux/raxml-light/PKGBUILD
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
pkgname=raxml-light
|
||||||
|
_pkgname=RAxML-Light
|
||||||
|
pkgver=1.0.9
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="A tool for computing terabyte phylogenies https://doi.org/10.1093/bioinformatics/bts309"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cme.h-its.org/exelixis/web/software/raxml-light/index.html"
|
||||||
|
depends=('gcc-libs')
|
||||||
|
makedepends=('make' 'gcc')
|
||||||
|
license=('unknow')
|
||||||
|
source=("https://cme.h-its.org/exelixis/php/countRAxMLLight${pkgver//./}.php")
|
||||||
|
md5sums=('a2740440b2d498a03bab88fbd6b7432a')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${_pkgname}-$pkgver"
|
||||||
|
make -f Makefile.AVX.gcc
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${_pkgname}-$pkgver"
|
||||||
|
install -Dm 755 raxmlLight-AVX $pkgdir/usr/bin/$pkgname
|
||||||
|
}
|
||||||
|
|
12
BioArchLinux/raxml-light/lilac.py
Normal file
12
BioArchLinux/raxml-light/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
from lilaclib import *
|
||||||
|
|
||||||
|
def pre_build():
|
||||||
|
update_pkgver_and_pkgrel(_G.newver.lstrip('v'))
|
||||||
|
run_cmd(['updpkgsums'])
|
||||||
|
|
||||||
|
def post_build():
|
||||||
|
git_add_files('PKGBUILD')
|
||||||
|
git_commit()
|
||||||
|
update_aur_repo()
|
8
BioArchLinux/raxml-light/lilac.yaml
Normal file
8
BioArchLinux/raxml-light/lilac.yaml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
maintainers:
|
||||||
|
- github: starsareintherose
|
||||||
|
email: kuoi@bioarchlinux.org
|
||||||
|
update_on:
|
||||||
|
- regex: 'RAxML-Light v1(\d+.\d+.\d+) available here'
|
||||||
|
source: regex
|
||||||
|
url: https://cme.h-its.org/exelixis/web/software/raxml-light/index.html
|
Loading…
Add table
Reference in a new issue