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-ocamlify |
---|
7 | version 0.0.1 |
---|
8 | categories devel ml |
---|
9 | maintainers googlemail.com:benedikt.meurer |
---|
10 | license LGPL-2.1 |
---|
11 | description Include files in OCaml code |
---|
12 | long_description This program allows to copy files inside OCaml code. It \ |
---|
13 | uses a first file that describes the other files that must \ |
---|
14 | be included and the type of OCaml variable it should create. \ |
---|
15 | It can also describe dependencies to other files, in order \ |
---|
16 | to generate .depends files for make. |
---|
17 | |
---|
18 | homepage http://ocamlify.forge.ocamlcore.org/ |
---|
19 | platforms darwin |
---|
20 | master_sites http://forge.ocamlcore.org/frs/download.php/379/ |
---|
21 | |
---|
22 | distname ocamlify-${version} |
---|
23 | |
---|
24 | checksums md5 bcd97ad0f7203019019997197451dbf0 \ |
---|
25 | sha1 edac27eb484f151076d645a8b8b6d502e5f72376 \ |
---|
26 | rmd160 0a796a55491749b0677a5f956a6ed261b6bac408 |
---|
27 | |
---|
28 | livecheck.type regex |
---|
29 | livecheck.url http://forge.ocamlcore.org/frs/?group_id=53 |
---|
30 | livecheck.regex {>ocamlify-(.*)\.tar\.gz} |
---|
31 | |
---|
32 | use_oasis yes |
---|
33 | |
---|
34 | configure.args-append "--destdir ${destroot}" |
---|
35 | |
---|