mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
Add mummer4
This commit is contained in:
parent
36fd5f6afc
commit
699d7dad66
3 changed files with 46 additions and 0 deletions
25
BioArchLinux/mummer4/PKGBUILD
Normal file
25
BioArchLinux/mummer4/PKGBUILD
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Maintainer: Mick Elliot <m.g.elliot@rug.nl>
|
||||
# Contributor: Mick Elliot <m.g.elliot@rug.nl>
|
||||
|
||||
pkgname=mummer4
|
||||
pkgver=4.0.0rc1
|
||||
pkgrel=1
|
||||
pkgdesc="A fast and versatile genome alignment system. https://doi.org/10.1371/journal.pcbi.1005944"
|
||||
arch=('x86_64')
|
||||
url="https://mummer4.github.io/"
|
||||
license=('MIT')
|
||||
depends=()
|
||||
provides=()
|
||||
source=("https://github.com/${pkgname}/mummer/releases/download/v${pkgver}/mummer-${pkgver}.tar.gz")
|
||||
sha256sums=('85006adb2d6539c2f738c3e3bb14b58bb6f62cd6c6ca5ede884a87ae76e07d1d')
|
||||
|
||||
build() {
|
||||
cd "mummer-${pkgver}"
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "mummer-${pkgver}"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
}
|
11
BioArchLinux/mummer4/lilac.py
Normal file
11
BioArchLinux/mummer4/lilac.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
#!/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()
|
||||
|
10
BioArchLinux/mummer4/lilac.yaml
Normal file
10
BioArchLinux/mummer4/lilac.yaml
Normal file
|
@ -0,0 +1,10 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: michaelgelliot
|
||||
email: m.g.elliot@rug.nl
|
||||
update_on:
|
||||
- source: github
|
||||
github: mummer4/mummer
|
||||
use_max_tag: true
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue