Ticket #27527: Portfile

File Portfile, 1.5 KB (added by haroldpimentel@…, 13 years ago)
Line 
1# $Id: Portfile 72789 2010-10-26 22:28:44Z ryandesign@macports.org $
2
3PortSystem          1.0
4
5name                cufflinks
6version             0.9.3
7categories          science biology
8platforms           darwin
9maintainers         gmail.com:haroldpimentel
10license             Boost
11
12description         Cufflinks assembles transcripts, estimates their abundances,\
13                    and tests for differential expression and regulation in RNA-Seq samples.
14
15long_description    Cufflinks assembles transcripts, estimates their abundances, \
16                    and tests for differential expression and regulation in RNA-Seq \
17                    samples. It accepts aligned RNA-Seq reads and assembles the \
18                    alignments into a parsimonious set of transcripts. \
19                    Cufflinks then estimates the relative abundances of these \
20                    transcripts based on how many reads support each one.
21
22homepage            http://cufflinks.cbcb.umd.edu/
23master_sites        ${homepage}downloads
24
25checksums           sha1        172398c87bd5fb55ccea1d545769990e94a17e1e\
26                    rmd160      9933360dd3b8fb32072a11521ec6d8be2077970b
27
28depends_lib         port:zlib \
29                    port:samtools \
30                    port:boost
31
32# samtools is not universal
33universal_variant   no
34
35post-destroot {
36    xinstall -d ${destroot}${prefix}/share/doc/${name}
37    xinstall -m 644 -W ${worksrcpath} \
38        AUTHORS \
39        LICENSE \
40        README \
41        ${destroot}${prefix}/share/doc/${name}
42}