mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
8e9799c052
As per the web site, the license for GRAPPA is GPLv2 https://www.cs.unm.edu/~moret/GRAPPA/ PR: 202426 Submitted by: George <george@nycbug.org>
25 lines
552 B
Makefile
25 lines
552 B
Makefile
# Created by: dbader@ece.unm.edu
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= grappa
|
|
PORTVERSION= 2.0
|
|
CATEGORIES= biology
|
|
MASTER_SITES= http://www.cs.unm.edu/~moret/GRAPPA/
|
|
DISTNAME= GRAPPA20
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Genome Rearrangements Analysis and Phylogeny Software
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gmake
|
|
|
|
PLIST_FILES= bin/grappa bin/invdist bin/distmat
|
|
|
|
do-install:
|
|
(cd ${WRKSRC} && ${INSTALL_PROGRAM} grappa ${STAGEDIR}${PREFIX}/bin)
|
|
${LN} -sf grappa ${STAGEDIR}${PREFIX}/bin/invdist
|
|
${LN} -sf grappa ${STAGEDIR}${PREFIX}/bin/distmat
|
|
|
|
.include <bsd.port.mk>
|