Ticket #26999: Portfile

File Portfile, 1.4 KB (added by haroldpimentel@…, 14 years ago)

Portfile (first one was missing dependency)

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                cufflinks
6version             0.9.1
7categories          science biology
8platforms           darwin
9maintainers         gmail.com:haroldpimentel
10license             Boost
11description         Cufflinks assembles transcripts, estimates their abundances,\
12                    and tests for differential expression and regulation in RNA-Seq samples.
13long_description    Cufflinks assembles transcripts, estimates their abundances, \
14                    and tests for differential expression and regulation in RNA-Seq \
15                    samples. It accepts aligned RNA-Seq reads and assembles the \
16                    alignments into a parsimonious set of transcripts. \
17                    Cufflinks then estimates the relative abundances of these \
18                    transcripts based on how many reads support each one.
19homepage            http://cufflinks.cbcb.umd.edu
20master_sites        http://cufflinks.cbcb.umd.edu/downloads
21checksums           md5         0191d0fb4449abb9f26bb4b89bed824e\
22                    sha1        172398c87bd5fb55ccea1d545769990e94a17e1e\
23                    rmd160      9933360dd3b8fb32072a11521ec6d8be2077970b
24depends_lib         port:zlib \
25                    port:samtools \
26                    port:boost
27post-destroot {
28              xinstall -d ${destroot}${prefix}/share/doc/${name}
29              xinstall -m 644 -W ${worksrcpath} \
30                AUTHORS LICENSE README  \
31                ${destroot}${prefix}/share/doc/${name}
32}