Ticket #41437: Portfile-bedtools.diff
File Portfile-bedtools.diff, 1.3 KB (added by arjanvandervelde (Arjan van der Velde), 11 years ago) |
---|
-
Portfile
old new 5 5 6 6 name bedtools 7 7 version 2.17.0 8 revision 1 8 9 categories science 9 10 platforms darwin 10 11 maintainers gmail.com:vandervelde.ag openmaintainer … … 26 27 rmd160 dccc7dc02dd0519977e30f83a0d49c9f9b0e0ca9 \ 27 28 sha256 6dcfacdcbccc968e872b81ba1f37a086b1bcc486571582ed595db717e924d0fe 28 29 29 depends_lib port:zlib 30 depends_lib port:zlib \ 31 port:py27-sphinx 30 32 31 33 use_configure no 32 34 … … 37 39 CFLAGS="-g -Wall ${configure.cflags} [get_canonical_archflags cc]" 38 40 use_parallel_build no 39 41 42 post-build { 43 system "cd ${worksrcpath}/docs && make SPHINXBUILD=sphinx-build-2.7 man" 44 } 45 40 46 destroot { 41 47 eval xinstall -m 755 [glob ${worksrcpath}/bin/*] ${destroot}${prefix}/bin/ 42 48 xinstall -d ${destroot}${prefix}/share/doc/${name} … … 45 51 LICENSE README.rst RELEASE_HISTORY \ 46 52 ${destroot}${prefix}/share/doc/${name} 47 53 eval xinstall -m 644 [glob ${worksrcpath}/genomes/*] ${destroot}${prefix}/share/${name}/genomes/ 54 xinstall -m 644 ${worksrcpath}/docs/_build/man/bedtools.1 ${destroot}${prefix}/share/man/man1 48 55 }