1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/biology/mummer/Makefile
Martin Wilke 9326ebd9c8 MUMmer is a modular system for the rapid whole genome alignment of finished
or draft sequence. This package provides an efficient suffix tree library,
seed-and-extend alignment, SNP detection, repeat detection, and
visualization tools.

WWW:	http://mummer.sourceforge.net/

PR:		ports/118142
Submitted by:	Tony Maher
2007-12-14 20:54:47 +00:00

44 lines
1007 B
Makefile

# ex:ts=8
# New ports collection makefile for: MUMmer
# Date created: 20 November 2007
# Whom: Tony Maher
#
# $FreeBSD$
#
PORTNAME= mummer
PORTVERSION= 3.20
CATEGORIES= biology
MASTER_SITES= SF
DISTNAME= MUMmer${PORTVERSION}
MAINTAINER= Anthony.Maher@uts.edu.au
COMMENT= A modular system for rapid whole genome alignment
USE_GMAKE= yes
PROGRAMS= annotate combineMUMs delta-filter gaps \
mgaps mummer repeat-match show-aligns \
show-coords show-diff show-snps show-tiling
SCRIPTS= dnadiff exact-tandems mapview mummerplot nucmer \
nucmer2xfig promer run-mummer1 run-mummer3
DOCUMENTS= COPYRIGHT INSTALL LICENSE README
do-install:
.for program in ${PROGRAMS}
(cd ${WRKSRC} && ${INSTALL_PROGRAM} ${program} ${PREFIX}/bin)
.endfor
.for script in ${SCRIPTS}
(cd ${WRKSRC} && ${INSTALL_SCRIPT} ${script} ${PREFIX}/bin)
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for doc in ${DOCUMENTS}
(cd ${WRKSRC} && ${INSTALL_DATA} ${doc} ${DOCSDIR})
.endfor
.endif
.include <bsd.port.mk>