summaryrefslogtreecommitdiff
path: root/biology/fluctuate/Makefile
diff options
context:
space:
mode:
authorjschauma <jschauma@pkgsrc.org>2003-09-30 01:19:31 +0000
committerjschauma <jschauma@pkgsrc.org>2003-09-30 01:19:31 +0000
commit4e03a01d5ae09c7b3936d175311853a56f5ab4ea (patch)
treea00bef19e0f492e92309ee9d105bef0643785bdf /biology/fluctuate/Makefile
parent1c09b0439778148c52c904ad576d794dd6e73c62 (diff)
downloadpkgsrc-4e03a01d5ae09c7b3936d175311853a56f5ab4ea.tar.gz
Initial import of fluctuate, one of the many packages provided by
brook at biology dot nmsu dot edu and his team at NMSU. FLUCTUATE fits the model which has a single population which has been growing (or shrinking) according to an exponential growth law. It estimates 4Nu and g, where N is the effective population size, u is the neutral mutation rate per site, and g is the growth rate of the population.
Diffstat (limited to 'biology/fluctuate/Makefile')
-rw-r--r--biology/fluctuate/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/biology/fluctuate/Makefile b/biology/fluctuate/Makefile
new file mode 100644
index 00000000000..99c8a1cd405
--- /dev/null
+++ b/biology/fluctuate/Makefile
@@ -0,0 +1,33 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/09/30 01:19:31 jschauma Exp $
+#
+
+DISTNAME= fluctuate1.4.src.doc
+PKGNAME= fluctuate-1.4
+WRKSRC= ${WRKDIR}/fluctuate1.4
+CATEGORIES= biology
+MASTER_SITES= ftp://evolution.genetics.washington.edu/pub/lamarc/fluctuate/
+
+MAINTAINER= brook@nmsu.edu
+HOMEPAGE= http://evolution.genetics.washington.edu/lamarc/fluctuate.html
+COMMENT= Estimation of population growth rate
+
+USE_BUILDLINK2= YES
+ALL_TARGET= fluctuate
+
+DOCDIR= ${PREFIX}/share/doc/fluctuate
+EXDIR= ${PREFIX}/share/examples/fluctuate
+DOCFILES= fluctuate.doc errors.doc
+EXFILES= bestree infile outfile
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/fluctuate ${PREFIX}/bin/
+ ${INSTALL_DATA_DIR} ${DOCDIR}
+ ${INSTALL_DATA_DIR} ${EXDIR}
+ for f in ${DOCFILES}; do \
+ ${INSTALL_DATA} ${WRKSRC}/$$f ${DOCDIR}/$$f; \
+ done
+ for f in ${EXFILES}; do \
+ ${INSTALL_DATA} ${WRKSRC}/$$f ${EXDIR}/$$f; \
+ done
+
+.include "../../mk/bsd.pkg.mk"