diff options
author | wjv <wjv@FreeBSD.org> | 2002-03-27 14:42:56 +0000 |
---|---|---|
committer | wjv <wjv@FreeBSD.org> | 2002-03-27 14:42:56 +0000 |
commit | 39d668c0346e97530288a9e6f9c4fb0d7c9c51a3 (patch) | |
tree | 21b1cdf4e1acc6bc8f4e54da5a09876236a16568 /biology/crimap/Makefile | |
parent | 1756efabd1de0b9ab1edc671456cd1d4e4ec7bfa (diff) | |
download | FreeBSD-ports-39d668c0346e97530288a9e6f9c4fb0d7c9c51a3.zip FreeBSD-ports-39d668c0346e97530288a9e6f9c4fb0d7c9c51a3.tar.gz |
Add crimap 2.4, a tool for the creation of multilocus linkage maps.
PR: 35198
Submitted by: Tony Maher <tonym@biolateral.com.au>
Diffstat (limited to 'biology/crimap/Makefile')
-rw-r--r-- | biology/crimap/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/biology/crimap/Makefile b/biology/crimap/Makefile new file mode 100644 index 0000000..e5ecc9a --- /dev/null +++ b/biology/crimap/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: crimap +# Date created: 4 December 2001 +# Whom: Tony Maher <tonym@biolateral.com.au> +# +# $FreeBSD$ +# + +PORTNAME= crimap +PORTVERSION= 2.4 +CATEGORIES= biology +MASTER_SITES= http://compgen.rutgers.edu/multimap/crimap/ +DISTNAME= ${PORTNAME}.source +EXTRACT_SUFX= .tar.Z + +MAINTAINER= tonym@biolateral.com.au + +NO_WRKSUBDIR= true + +PROGRAMS= crimap +EXAMPLES= chr7a.gen demo.dat + +do-build: + cd ${WRKSRC}; \ + cc -O -o crimap *.c -lm + +do-install: +.for file in ${PROGRAMS} + ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin +.endfor +.if !defined(NOPORTDOCS) + @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${DOCSDIR} + ${CAT} ${WRKSRC}/progdoc_v2.4 | tbl | eqn -Tlatin1 | nroff -ms -t \ + > ${DOCSDIR}/progdoc_v2.4 +.for file in ${EXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLESDIR} +.endfor +.endif + +.include <bsd.port.mk> |