Ticket #38077: Portfile

File Portfile, 970 bytes (added by inouetakahiroki@…, 11 years ago)
Line 
1
2PortSystem 1.0
3
4name                ocaml-info
5version             4.00
6license             Permissive
7platforms           darwin
8maintainers         gmail.com:inouetakahiroki
9categories          lang ml
10supported_archs     noarch
11description         The Objective Caml info reference manual
12long_description    ${description}
13homepage            http://www.ocaml.org/
14master_sites        http://caml.inria.fr/pub/distrib/ocaml-${version}
15distname            ocaml-${version}-refman.info
16
17
18checksums           rmd160 2ad797800cb7bf06b921b778805e9e643f81ba10 \
19                    sha256 2d9e6fa1cc5bb529c71302f8a838d13f5132d99ea246cb47fddfc0fced1c1437
20
21
22
23use_configure       no
24
25build               {}
26
27destroot {
28    xinstall -d ${destroot}${prefix}/share/info
29    system "cp ${workpath}/infoman/* ${destroot}${prefix}/share/info"
30}
31
32livecheck.type  regex
33livecheck.url   http://caml.inria.fr/download.en.html
34livecheck.regex "ocaml-.*/ocaml-(.*)-refman.info.tar.gz"
35