1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup xcode 1.0 |
---|
5 | |
---|
6 | name fscript-cli |
---|
7 | version 2.2 |
---|
8 | categories lang sysutils |
---|
9 | platforms darwin |
---|
10 | maintainers nomaintainer |
---|
11 | |
---|
12 | description Command-line interface to the F-Script interpreter |
---|
13 | |
---|
14 | long_description fscript is a program that allows F-Script scripts to \ |
---|
15 | be run from the command line, and to can also present \ |
---|
16 | an interpreter prompt in a shell, rather than \ |
---|
17 | requiring a GUI program. fscript also provides some \ |
---|
18 | useful classes and methods that make the language more \ |
---|
19 | appropriate for general scripting tasks, such as \ |
---|
20 | line-oriented input/output, regular expressions, and a \ |
---|
21 | library importing system. |
---|
22 | |
---|
23 | homepage http://pages.cs.wisc.edu/~weinrich/projects/fscript/ |
---|
24 | master_sites ${homepage} |
---|
25 | |
---|
26 | depends_lib port:FScript |
---|
27 | |
---|
28 | distname fscript-source |
---|
29 | dist_subdir ${name}/${version} |
---|
30 | use_dmg yes |
---|
31 | |
---|
32 | checksums md5 18020a44bef3323a6e5469554f3bbaab \ |
---|
33 | sha1 cebd68adc2c3e039cc883d38671940616d1794d1 \ |
---|
34 | rmd160 63f06655713fbface9ad131d4e989bbdb69fa989 |
---|
35 | |
---|
36 | xcode.configuration Release |
---|
37 | xcode.build.settings FRAMEWORK_SEARCH_PATHS=${prefix}/Library/Frameworks |
---|
38 | |
---|
39 | destroot { |
---|
40 | xinstall ${worksrcpath}/build/Release/fscript ${destroot}${prefix}/bin |
---|
41 | xinstall ${worksrcpath}/fscript.1 ${destroot}${prefix}/share/man/man1 |
---|
42 | } |
---|
43 | |
---|
44 | livecheck.type regex |
---|
45 | livecheck.url ${homepage} |
---|
46 | livecheck.regex "Current Version (.*?)," |
---|