Ticket #12814: Portfile

File Portfile, 1.1 KB (added by grrr@…, 17 years ago)

Portfile

Line 
1# $Id$
2
3PortSystem      1.0
4
5name            txt2regex
6version         0.8
7categories      sysutils
8platforms       darwin freebsd
9maintainers     grrr@technokracy.net
10description     Converts human sentences to regexes
11
12long_description \
13    Txt2regex is a Regular Expression Wizard that converts human sentences \
14    to regexes. In a simple interactive console interface, the user answer \
15    questions and the program build the regexes for more than 20 programs, \
16    like Vim, Emacs, Perl, PHP, Python, Procmail and OpenOffice.org. It \
17    is a Shell Script 100% written with Bash builtin commands.
18
19homepage        http://txt2regex.sourceforge.net/
20master_sites    http://txt2regex.sourceforge.net/
21distfiles       ${name}-${version}.tgz
22
23checksums       md5 83bc1f95b36fe51ade8d130fab390103 \
24                sha1 367923b1dad95c68b8e46db6888135b8b8d00807 \
25                rmd160 03387e1a43b17b7a977bcd8a5beb9b48c3cff24c
26
27use_configure   no
28build           {}
29
30destroot {
31    xinstall -m 555 ${worksrcpath}/${name}-${version}.sh ${destroot}${prefix}/bin/${name}
32    xinstall -m 444 ${worksrcpath}/${name}.man ${destroot}${prefix}/share/man/man1
33}
34