mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
add fasta_ushuffle
This commit is contained in:
parent
d08255711a
commit
64dcbcc4f4
3 changed files with 46 additions and 0 deletions
26
BioArchLinux/fasta_ushuffle/PKGBUILD
Normal file
26
BioArchLinux/fasta_ushuffle/PKGBUILD
Normal file
|
@ -0,0 +1,26 @@
|
|||
# guoyi
|
||||
|
||||
pkgname=fasta_ushuffle
|
||||
pkgver=0.2
|
||||
pkgrel=1
|
||||
pkgdesc="Wrapper for uShuffle"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/agordon/fasta_ushuffle"
|
||||
license=('custom')
|
||||
|
||||
depends=('glibc')
|
||||
makedepends=('make' 'git')
|
||||
optdepends=()
|
||||
|
||||
source=(git+https://github.com/agordon/fasta_ushuffle.git)
|
||||
sha256sums=('SKIP')
|
||||
build() {
|
||||
cd $pkgname
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname
|
||||
installi -Dm755 ushuffle $pkgdir/usr/bin/ushuffle
|
||||
installi -Dm755 fasta_ushuffle $pkgdir/usr/bin/fasta_ushuffle
|
||||
}
|
10
BioArchLinux/fasta_ushuffle/lilac.py
Normal file
10
BioArchLinux/fasta_ushuffle/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()
|
10
BioArchLinux/fasta_ushuffle/lilac.yaml
Normal file
10
BioArchLinux/fasta_ushuffle/lilac.yaml
Normal file
|
@ -0,0 +1,10 @@
|
|||
build_prefix: multilib
|
||||
maintainers:
|
||||
- github: starsareintherose
|
||||
email: kuoi@bioarchlinux.org
|
||||
pre_build: vcs_update
|
||||
post_build: git_pkgbuild_commit
|
||||
update_on:
|
||||
- source: cmd
|
||||
cmd: curl -sS https://raw.githubusercontent.com/agordon/fasta_ushuffle/master/README | grep 'VERSION' | awk '{print $2}'
|
||||
|
Loading…
Add table
Reference in a new issue