diff options
author | minskim <minskim@pkgsrc.org> | 2005-03-26 17:05:01 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-03-26 17:05:01 +0000 |
commit | 31d65d0f18425a5f233bed0b7b73cbd6bef28c69 (patch) | |
tree | 617f45bc1a288bb62c9b5faff23cec7a5b90850a /biology/lucy/Makefile | |
parent | 988044b55f03ed1f75dcc35fea500e81a11c6830 (diff) | |
download | pkgsrc-31d65d0f18425a5f233bed0b7b73cbd6bef28c69.tar.gz |
Import lucy from pkgsrc-wip. Packaged by David Price and modified by me.
A Sequence Cleanup Program. Lucy is a utility that prepares raw DNA
sequence fragments for sequence assembly,possibly using the TIGR
Assembler. The cleanup process includes quality assessment,
confidence reassurance, vector trimming and vector removal. The
primary advantage of Lucy over other similar utilities is that it is a
fully integrated, stand alone program.
Diffstat (limited to 'biology/lucy/Makefile')
-rw-r--r-- | biology/lucy/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/biology/lucy/Makefile b/biology/lucy/Makefile new file mode 100644 index 00000000000..1b8e5a180c6 --- /dev/null +++ b/biology/lucy/Makefile @@ -0,0 +1,27 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/03/26 17:05:01 minskim Exp $ +# + +DISTNAME= lucy-1.18p +CATEGORIES= biology +MASTER_SITES= ftp://ftp.tigr.org/pub/software/Lucy/ + +MAINTAINER= dprice@cs.nmsu.edu +HOMEPAGE= http://www.tigr.org/software +COMMENT= Sequence Cleanup Program + +PKG_INSTALLATION_TYPES= overwrite pkgviews + +INSTALLATION_DIRS= bin man/man1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/lucy ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/lucy.1 ${PREFIX}/man/man1 + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/lucy +.for EXAMPLE in PUC19 PUC19splice PUC19splice.for PUC19splice.rev \ + atie.seq atie.qul atie.2nd pSPORT1splice pSPORT1vector ARMTM40TR.seq \ + ARMTM40TR.qul lucy.ps lucy.debug + ${INSTALL_DATA} ${WRKSRC}/${EXAMPLE} ${PREFIX}/share/examples/lucy +.endfor + +.include "../../mk/pthread.buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |