Ticket #26990: Portfile

File Portfile, 1.4 KB (added by haroldpimentel@…, 14 years ago)
Line 
1# $Id$
2
3PortSystem          1.0
4
5name                bowtie
6version             0.12.7
7categories          science biology
8platforms           darwin
9maintainers         gmail.com:haroldpimentel
10description         Bowtie is an ultrafast, memory-efficient short read aligner.
11long_description    Bowtie is an ultrafast, memory-efficient short read aligner. \
12                    It aligns short DNA sequences (reads) to the human genome at \
13                    a rate of over 25 million 35-bp reads per hour. Bowtie indexes \
14                    the genome with a Burrows-Wheeler index to keep its memory footprint \
15                    small: typically about 2.2 GB for the human genome (2.9 GB for paired-end).
16homepage            http://bowtie-bio.sourceforge.net/
17master_sites        sourceforge:bowtie-bio
18use_zip             yes
19distfiles           ${distname}-src${extract.suffix}
20checksums           md5         2808d61eaf15c9f7138794766c99a561 \
21                    sha1        0eb752db072a2da6fc6dac55d2ab825422e994ce \
22                    rmd160      7b2210d4526c4818936b729b0e68f4c13a101fc6
23build.target        allall
24use_configure       no
25destroot {
26         xinstall -m 755 ${worksrcpath}/bowtie ${worksrcpath}/bowtie-debug \
27                ${worksrcpath}/bowtie-build ${worksrcpath}/bowtie-build-debug \
28                ${worksrcpath}/bowtie-inspect ${worksrcpath}/bowtie-inspect-debug \
29                ${destroot}${prefix}/bin
30         xinstall -d ${destroot}${prefix}/share/doc/${name}
31         xinstall -m 644 -W ${worksrcpath} \
32                AUTHORS COPYING MANUAL NEWS TUTORIAL \
33                VERSION MANUAL.markdown ${destroot}${prefix}/share/doc/${name}
34}