Ticket #29607: Portfile

File Portfile, 910 bytes (added by marc.schlaich@…, 13 years ago)
Line 
1# $Id$
2
3PortSystem          1.0
4
5name                jflex
6version             1.4.3
7categories          devel
8platforms           darwin
9license             GPL
10maintainers         gmail.com:marc.schlaich
11description         JFlex - The Fast Scanner Generator for Java
12
13long_description    JFlex is a lexical analyzer generator (also known as \
14                    scanner generator) for Java(tm), written in Java(tm).
15
16homepage            http://jflex.de/
17master_sites        sourceforge
18
19checksums           md5     27a30015859957d8af30bc336d40bc30 \
20                    sha1    282cf480497ff2219326a2805a68e88a24221b09 \
21                    rmd160  96b9b18770ba808cd43ed2fda96f69234b82dbcf
22
23use_configure       no
24
25build {}
26
27destroot {
28    file copy ${worksrcpath}/bin/jflex \
29        ${destroot}${prefix}/bin/jflex
30    file copy ${worksrcpath}/lib/JFlex.jar \
31        ${destroot}${prefix}/lib/JFlex.jar
32}