1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name ott |
---|
6 | version 0.10.16 |
---|
7 | platforms darwin |
---|
8 | categories devel |
---|
9 | maintainers anil@recoil.org |
---|
10 | description tool for writing definitions of programming languages |
---|
11 | long_description Ott is a tool for writing definitions of programming languages and calculi. \ |
---|
12 | It takes as input a definition of a language syntax and semantics, in a concise \ |
---|
13 | and readable ASCII notation that is close to what one would write in informal \ |
---|
14 | mathematics. It generates LaTeX to build a typeset version of the definition, \ |
---|
15 | and Coq, HOL, and Isabelle versions of the definition. |
---|
16 | |
---|
17 | homepage http://www.cl.cam.ac.uk/~pes20/ott/ |
---|
18 | master_sites http://www.cl.cam.ac.uk/~pes20/ott/ |
---|
19 | distname ott_distro_${version} |
---|
20 | |
---|
21 | checksums md5 57527d99473f25e6977fd0855b394af9 \ |
---|
22 | sha1 d2ea7c9eeaed9eec24fd9299b92edbacc0689561 \ |
---|
23 | rmd160 1c31920762552ada159aeea3e69b3078df477f02 |
---|
24 | |
---|
25 | depends_lib port:ocaml |
---|
26 | |
---|
27 | use_configure no |
---|
28 | |
---|
29 | build.env PREFIX=${prefix} |
---|
30 | build.target world-opt |
---|
31 | |
---|
32 | destroot { |
---|
33 | xinstall -m 755 -d ${destroot}/${prefix}/bin |
---|
34 | xinstall -m 755 -W ${worksrcpath} bin/ott \ |
---|
35 | ${destroot}/${prefix}/bin/ott |
---|
36 | } |
---|