Ticket #38397: Portfile.2

File Portfile.2, 1.8 KB (added by sean@…, 11 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5
6name                bowtie2
7version             2.1.0
8categories          science
9platforms           darwin
10license             GPL-3
11
12homepage            http://bowtie-bio.sourceforge.net/bowtie2
13description         Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences.
14long_description    Bowtie 2 is an ultrafast and memory-efficient tool for aligning \
15                    sequencing reads to long reference sequences. It is particularly \
16                    good at aligning reads of about 50 up to 100s or 1,000s of characters, \
17                    and particularly good at aligning to relatively long (e.g. mammalian) \
18                    genomes. Bowtie 2 indexes the genome with an FM Index to keep its memory \
19                    footprint small: for the human genome, its memory footprint is typically \
20                    around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes.
21maintainers         node99.org:sean openmaintainer
22
23master_sites        sourceforge:project/bowtie-bio/bowtie2/${version}
24distname            ${name}-${version}-source
25use_zip             yes
26worksrcdir          ${name}-${version}
27checksums           rmd160 8c9caecffae919c7ee53a774ef1aabe60f9f04ba \
28                    sha256 90a9d3a6bd19ddc3a8f90b935c6a2288478572de2ad4039b29f91016b95ef4b0
29use_configure       no
30build.args-append   CC=${configure.cc} \
31                    CXX=${configure.cxx} \
32                    CPP=${configure.cpp}
33
34destroot {
35    xinstall -W ${worksrcpath} bowtie2 bowtie2-align bowtie2-build bowtie2-inspect ${destroot}${prefix}/bin
36}