1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup ocaml 1.0 |
---|
6 | name caml-oasis |
---|
7 | version 0.2.0 |
---|
8 | categories devel ml |
---|
9 | maintainers googlemail.com:benedikt.meurer |
---|
10 | license LGPL-2.1 |
---|
11 | description Architecture for building OCaml libraries and applications |
---|
12 | long_description OASIS is a tool to integrate a configure, build and install \ |
---|
13 | system in your OCaml project. It helps to create standard \ |
---|
14 | entry points in your build system and allows external tools \ |
---|
15 | to analyse your project easily. |
---|
16 | |
---|
17 | homepage http://oasis.forge.ocamlcore.org/ |
---|
18 | platforms darwin |
---|
19 | master_sites https://forge.ocamlcore.org/frs/download.php/501/ |
---|
20 | |
---|
21 | distname oasis-${version} |
---|
22 | |
---|
23 | checksums md5 e5d04bfe41eacd4f58a156784700a2ba \ |
---|
24 | sha1 b492b0f58d5c2643d11a4b87450ffe4cd2b635d2 \ |
---|
25 | rmd160 5b7623e13c7c73948d2528dfea06dbe92b9b17a5 |
---|
26 | |
---|
27 | depends_lib port:caml-expect \ |
---|
28 | port:caml-fileutils \ |
---|
29 | port:caml-findlib \ |
---|
30 | port:caml-graph \ |
---|
31 | port:caml-ocamlify \ |
---|
32 | port:caml-odn \ |
---|
33 | port:caml-ounit |
---|
34 | |
---|
35 | livecheck.type regex |
---|
36 | livecheck.url http://forge.ocamlcore.org/frs/?group_id=54 |
---|
37 | livecheck.regex {>oasis-(.*)\.tar\.gz} |
---|
38 | |
---|
39 | use_oasis yes |
---|
40 | use_oasis_doc yes |
---|
41 | |
---|
42 | configure.args-append "--destdir ${destroot} --docdir ${prefix}/share/doc/caml-oasis" |
---|
43 | |
---|