1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name pccts |
---|
5 | version 1.33 |
---|
6 | revision 1 |
---|
7 | categories devel |
---|
8 | maintainers waqar@opendarwin.org |
---|
9 | description Purdue Compiler-Construction Tool Set (parser-generator) |
---|
10 | long_description \ |
---|
11 | PCCTS, the Purdue Compiler Construction Tool Set, is a set of \ |
---|
12 | public-domain software tools designed to facilitate the construction \ |
---|
13 | of compilers and other translation systems. Although originally \ |
---|
14 | developed primarily for internal use within Purdue University. |
---|
15 | homepage http://www.polhode.com/pccts.html |
---|
16 | platforms darwin |
---|
17 | master_sites http://www.polhode.com/ |
---|
18 | extract.sufx .zip |
---|
19 | use_zip yes |
---|
20 | distname ${name}133mr |
---|
21 | checksums md5 fd70972b0a6aa2d3cf8b5c66d26d229d |
---|
22 | worksrcdir ${name} |
---|
23 | configure {} |
---|
24 | build { system "cd ${worksrcpath} && make" } |
---|
25 | install { system "mkdir -p ${destroot}${prefix}/bin" |
---|
26 | system "mkdir -p ${destroot}${prefix}/man/man1" |
---|
27 | system "cd ${worksrcpath}/bin && install -m 555 antlr \ |
---|
28 | ${destroot}${prefix}/bin" |
---|
29 | system "cd ${worksrcpath}/bin && install -m 555 dlg \ |
---|
30 | ${destroot}${prefix}/bin" |
---|
31 | system "cd ${worksrcpath}/bin && install -m 555 genmk \ |
---|
32 | ${destroot}${prefix}/bin" |
---|
33 | system "cd ${worksrcpath}/bin && install -m 555 sor \ |
---|
34 | ${destroot}${prefix}/bin" |
---|
35 | system "cd ${worksrcpath}/dlg && install -m 444 dlg.1 \ |
---|
36 | ${destroot}${prefix}/man/man1" |
---|
37 | system "cd ${worksrcpath}/antlr && install -m 444 antlr.1 \ |
---|
38 | ${destroot}${prefix}/man/man1" |
---|
39 | } |
---|