1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name shakespeare |
---|
6 | version 1.2.1 |
---|
7 | distname spl-${version} |
---|
8 | categories lang |
---|
9 | maintainers gmail.com:mdippery |
---|
10 | |
---|
11 | description Shakespeare programming language |
---|
12 | long_description A programming language created with the design goal to \ |
---|
13 | make the source code resemble Shakespeare plays. The \ |
---|
14 | characters in the play are variables. |
---|
15 | homepage http://shakespearelang.sourceforge.net/ |
---|
16 | platforms darwin |
---|
17 | master_sites http://shakespearelang.sf.net/download/ |
---|
18 | checksums md5 c31de8415af80819eb944a1cecadddde \ |
---|
19 | sha1 17adea7bbf5e1de1a29e71b19e5271f186e9698d \ |
---|
20 | rmd160 0225bced2f236fc5c1850cd9fe5c48fc1c75aa1c |
---|
21 | depends_build port:bison port:flex |
---|
22 | use_configure no |
---|
23 | |
---|
24 | build.target install |
---|
25 | |
---|
26 | destroot { |
---|
27 | xinstall -m 755 -d ${destroot}${prefix}/bin |
---|
28 | xinstall -m 755 -d ${destroot}${prefix}/include |
---|
29 | xinstall -m 755 -d ${destroot}${prefix}/lib |
---|
30 | xinstall -m 755 ${worksrcpath}/spl/bin/spl2c ${destroot}${prefix}/bin |
---|
31 | xinstall -m 644 ${worksrcpath}/spl/include/spl.h ${destroot}${prefix}/include |
---|
32 | xinstall -m 755 ${worksrcpath}/spl/lib/libspl.a ${destroot}${prefix}/lib |
---|
33 | } |
---|