mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
phyde: init
This commit is contained in:
parent
f2697b3a84
commit
4101b79340
4 changed files with 35 additions and 0 deletions
16
BioArchLinux/phyde/PKGBUILD
Normal file
16
BioArchLinux/phyde/PKGBUILD
Normal file
|
@ -0,0 +1,16 @@
|
|||
pkgname=phyde
|
||||
pkgver=0.9971
|
||||
pkgrel=1
|
||||
pkgdesc="a system-independent editor for DNA and amino acid sequence alignments, designed to assist anybody interested in phylogenetic or other comparative analyses of sequence data"
|
||||
arch=('any')
|
||||
url="http://www.phyde.de/"
|
||||
license=('custom')
|
||||
depends=('java-environment')
|
||||
source=("http://www.phyde.de/PhyDE-1.jar.zip" "phyde")
|
||||
sha256sums=('697929e0bfd2d90a0f430a9e7f7c072c3996bc62748facb252ef40edfedad9b1'
|
||||
'e8e741fe77cc12f2440c02ee4cb44ff3c5b906e19d494b94c96656a10fdf29d2')
|
||||
|
||||
package(){
|
||||
install -Dm 755 PhyDE-1.jar $pkgdir/usr/share/$pkgname/$pkgname.jar
|
||||
install -Dm 755 $pkgname $pkgdir/usr/bin/$pkgname
|
||||
}
|
10
BioArchLinux/phyde/lilac.py
Normal file
10
BioArchLinux/phyde/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'))
|
||||
run_cmd(['updpkgsums'])
|
||||
|
||||
def post_build():
|
||||
git_add_files('PKGBUILD')
|
||||
git_commit()
|
7
BioArchLinux/phyde/lilac.yaml
Normal file
7
BioArchLinux/phyde/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: multilib
|
||||
maintainers:
|
||||
- github: starsareintherose
|
||||
email: kuoi@bioarchlinux.org
|
||||
update_on:
|
||||
- source: cmd
|
||||
cmd: curl -sS http://www.phyde.de/download.html | grep '<a href="PhyDE' | sed 's/v/ /g' | sed 's/</ /g' | awk '{print $4}'
|
2
BioArchLinux/phyde/phyde
Executable file
2
BioArchLinux/phyde/phyde
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/bash
|
||||
java -jar /usr/share/phyde/phyde.jar
|
Loading…
Add table
Reference in a new issue