From bf1503c4309f7849877c53abd259c0cb20d471c6 Mon Sep 17 00:00:00 2001 From: Chris Harding Date: Thu, 6 Jul 2023 20:18:09 -0400 Subject: [PATCH] New package: mafft-7.520 --- srcpkgs/mafft/template | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 srcpkgs/mafft/template diff --git a/srcpkgs/mafft/template b/srcpkgs/mafft/template new file mode 100644 index 000000000000..2a645b0331bc --- /dev/null +++ b/srcpkgs/mafft/template @@ -0,0 +1,24 @@ +# Template file for 'mafft' +pkgname=mafft +version=7.520 +revision=1 +short_desc="Multiple alignment program for amino acid or nucleotide sequences" +maintainer="Chris Harding " +license="BSD-3-Clause" +homepage="https://mafft.cbrc.jp/alignment/software/" +distfiles="https://gitlab.com/sysimm/mafft/-/archive/v$version/mafft-v$version.tar.gz" +checksum=1865a0fb40f0f9e50eab16260ab33b998bfe37808e6170fca40de7f8fac84abc + +do_build() { + make PREFIX=/usr -C core + make PREFIX=/usr -C extensions +} + +do_install() { + make STRIP=true PREFIX=/usr DESTDIR=${DESTDIR} -C core install + make STRIP=true PREFIX=/usr DESTDIR=${DESTDIR} -C extensions install +} + +post_install() { + vlicense license +}