add clustal-omega

This commit is contained in:
starsareintherose 2021-11-01 17:31:40 +00:00
parent c88df6b4b8
commit 0b7b0a5d42
3 changed files with 52 additions and 0 deletions

30
clustal-omega/PKGBUILD Executable file
View file

@ -0,0 +1,30 @@
# Maintainer: Hu Butui <hot123tea123@gmail.com>
pkgname=clustal-omega
pkgver=1.2.4
pkgrel=2
pkgdesc='A general purpose multiple sequence alignment program for protein and DNA/RNA'
arch=('x86_64')
url='http://www.clustal.org/omega'
license=('GPL2')
depends=(
argtable
gcc-libs
)
makedepends=(
)
source=("${pkgname}-${pkgver}.tar.gz::http://www.clustal.org/omega/clustal-omega-${pkgver}.tar.gz")
sha256sums=('8683d2286d663a46412c12a0c789e755e7fd77088fb3bc0342bb71667f05a3ee')
build() {
cd "${pkgname}-${pkgver}"
./configure \
--prefix=/usr
make
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
# vim:set ts=2 sw=2 et:

12
clustal-omega/lilac.py Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env python3
from lilaclib import *
def pre_build():
update_pkgver_and_pkgrel(_G.newver.lstrip('v'))
def post_build():
git_pkgbuild_commit()
# vim:set ts=2 sw=2 et:

10
clustal-omega/lilac.yaml Executable file
View file

@ -0,0 +1,10 @@
maintainers:
- github: starsareintherose
email: starsareintherose@outlook.com
build_prefix: extra-x86_64
update_on:
- source: regex
url: "http://www.clustal.org/omega"
regex: 'clustal-omega-(\d+.\d+.\d+)'
# vim:set ts=2 sw=2 et: