Ticket #20317: Portfile

File Portfile, 1.3 KB (added by anil@…, 15 years ago)

Portfile for devel/ott

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                ott
6version             0.10.16
7platforms           darwin
8categories          devel
9maintainers         anil@recoil.org
10description         tool for writing definitions of programming languages
11long_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
17homepage            http://www.cl.cam.ac.uk/~pes20/ott/
18master_sites        http://www.cl.cam.ac.uk/~pes20/ott/
19distname            ott_distro_${version}
20
21checksums           md5     57527d99473f25e6977fd0855b394af9 \
22                    sha1    d2ea7c9eeaed9eec24fd9299b92edbacc0689561 \
23                    rmd160  1c31920762552ada159aeea3e69b3078df477f02
24
25depends_lib         port:ocaml
26
27use_configure       no
28
29build.env           PREFIX=${prefix}
30build.target        world-opt
31
32destroot {
33    xinstall -m 755 -d ${destroot}/${prefix}/bin
34    xinstall -m 755 -W ${worksrcpath} bin/ott \
35        ${destroot}/${prefix}/bin/ott
36}