mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
add tracy
This commit is contained in:
parent
9bf386b22a
commit
f5959a7b85
3 changed files with 38 additions and 0 deletions
18
tracy/PKGBUILD
Normal file
18
tracy/PKGBUILD
Normal file
|
@ -0,0 +1,18 @@
|
|||
# maintainer: Guoyi Zhang <GuoyiZhang at malacology dot net>
|
||||
|
||||
pkgname=tracy
|
||||
pkgver=0.6.1
|
||||
pkgrel=1
|
||||
pkgdesc="Basecalling, alignment, assembly and deconvolution of Sanger Chromatogram trace files"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/gear-genomics/tracy"
|
||||
license=('BSDv3')
|
||||
provides=('tracy')
|
||||
source=("https://github.com/gear-genomics/tracy/releases/download/v${pkgver}/tracy_v${pkgver}_linux_x86_64bit")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
package(){
|
||||
cd "$srcdir"
|
||||
install -Dm755 tracy_v${pkgver}_linux_x86_64bit $pkgdir/usr/bin/tracy
|
||||
chmod +x $pkgdir/usr/bin/tracy
|
||||
}
|
11
tracy/lilac.py
Normal file
11
tracy/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'))
|
||||
run_cmd(['updpkgsums'])
|
||||
|
||||
def post_build():
|
||||
git_add_files('PKGBUILD')
|
||||
git_commit()
|
9
tracy/lilac.yaml
Normal file
9
tracy/lilac.yaml
Normal file
|
@ -0,0 +1,9 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: starsareintherose
|
||||
email: starsareintherose@outlook.com
|
||||
update_on:
|
||||
- source: github
|
||||
github: gear-genomics/tracy
|
||||
use_max_tag: true
|
||||
include_regex: ^v
|
Loading…
Add table
Reference in a new issue