Ticket #22194: Portfile

File Portfile, 1.8 KB (added by mklein-de (Michael Klein), 14 years ago)
Line 
1# $Id$
2
3PortSystem              1.0
4PortGroup               xcode 1.0
5
6name                    fscript-cli
7version                 2.2
8categories              lang sysutils
9platforms               darwin
10maintainers             nomaintainer
11
12description             Command-line interface to the F-Script interpreter
13
14long_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                       
23homepage                http://pages.cs.wisc.edu/~weinrich/projects/fscript/
24master_sites            ${homepage}
25
26depends_lib             port:FScript
27
28distname                fscript-source
29dist_subdir             ${name}/${version}
30use_dmg                 yes
31
32checksums               md5     18020a44bef3323a6e5469554f3bbaab \
33                        sha1    cebd68adc2c3e039cc883d38671940616d1794d1 \
34                        rmd160  63f06655713fbface9ad131d4e989bbdb69fa989
35
36xcode.configuration     Release
37xcode.build.settings    FRAMEWORK_SEARCH_PATHS=${prefix}/Library/Frameworks
38
39destroot {
40        xinstall ${worksrcpath}/build/Release/fscript ${destroot}${prefix}/bin
41        xinstall ${worksrcpath}/fscript.1 ${destroot}${prefix}/share/man/man1
42}
43
44livecheck.type          regex
45livecheck.url           ${homepage}
46livecheck.regex         "Current Version (.*?),"