Ticket #31633: Portfile

File Portfile, 1.6 KB (added by benedikt.meurer@…, 13 years ago)
Line 
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
4PortSystem          1.0
5PortGroup ocaml     1.0
6name                caml-oasis
7version             0.2.0
8categories          devel ml
9maintainers         googlemail.com:benedikt.meurer
10license             LGPL-2.1
11description         Architecture for building OCaml libraries and applications
12long_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
17homepage            http://oasis.forge.ocamlcore.org/
18platforms           darwin
19master_sites        https://forge.ocamlcore.org/frs/download.php/501/
20
21distname            oasis-${version}
22
23checksums           md5     e5d04bfe41eacd4f58a156784700a2ba \
24                    sha1    b492b0f58d5c2643d11a4b87450ffe4cd2b635d2 \
25                    rmd160  5b7623e13c7c73948d2528dfea06dbe92b9b17a5
26
27depends_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
35livecheck.type      regex
36livecheck.url       http://forge.ocamlcore.org/frs/?group_id=54
37livecheck.regex     {>oasis-(.*)\.tar\.gz}
38
39use_oasis           yes
40use_oasis_doc       yes
41
42configure.args-append "--destdir ${destroot} --docdir ${prefix}/share/doc/caml-oasis"
43