1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name bedtools |
---|
6 | version 2.17.0 |
---|
7 | revision 1 |
---|
8 | categories science |
---|
9 | maintainers gmail.com:vandervelde.ag openmaintainer |
---|
10 | license GPL-2 |
---|
11 | description Utilities to perform basic operations on BED files |
---|
12 | long_description The BEDTools utilities allow one to address common genomics \ |
---|
13 | tasks such as finding feature overlaps and computing coverage. \ |
---|
14 | The utilities are largely based on four widely-used file formats: \ |
---|
15 | BED, GFF/GTF, VCF, and SAM/BAM. |
---|
16 | homepage https://code.google.com/p/bedtools/ |
---|
17 | master_sites https://bedtools.googlecode.com/files/ |
---|
18 | platforms darwin |
---|
19 | depends_lib port:zlib |
---|
20 | distname BEDTools.v${version} |
---|
21 | worksrcdir bedtools-${version} |
---|
22 | checksums sha1 1b1de3c35394a423f9ad98a9957a8853b426a578 \ |
---|
23 | rmd160 dccc7dc02dd0519977e30f83a0d49c9f9b0e0ca9 \ |
---|
24 | sha256 6dcfacdcbccc968e872b81ba1f37a086b1bcc486571582ed595db717e924d0fe |
---|
25 | use_configure no |
---|
26 | configure.cflags-append -std=gnu89 |
---|
27 | build.args CC=${configure.cc} \ |
---|
28 | CFLAGS="-g -Wall ${configure.cflags} ${configure.cc_archflags}" |
---|
29 | use_parallel_build no |
---|
30 | set bedtools_destdir ${destroot}${prefix}/bin |
---|
31 | build.target all |
---|
32 | |
---|
33 | destroot { |
---|
34 | eval xinstall -m 755 [glob ${worksrcpath}/bin/*] ${bedtools_destdir}/ |
---|
35 | xinstall -d ${destroot}${prefix}/share/doc/${name} |
---|
36 | xinstall -d ${destroot}${prefix}/share/${name}/genomes |
---|
37 | xinstall -m 644 -W ${worksrcpath} \ |
---|
38 | LICENSE README.rst RELEASE_HISTORY \ |
---|
39 | ${destroot}${prefix}/share/doc/${name} |
---|
40 | eval xinstall -m 644 [glob ${worksrcpath}/genomes/*] ${destroot}${prefix}/share/${name}/genomes/ |
---|
41 | } |
---|
42 | |
---|