1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name txt2regex |
---|
6 | version 0.8 |
---|
7 | categories sysutils |
---|
8 | platforms darwin freebsd |
---|
9 | maintainers grrr@technokracy.net |
---|
10 | description Converts human sentences to regexes |
---|
11 | |
---|
12 | long_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 | |
---|
19 | homepage http://txt2regex.sourceforge.net/ |
---|
20 | master_sites http://txt2regex.sourceforge.net/ |
---|
21 | distfiles ${name}-${version}.tgz |
---|
22 | |
---|
23 | checksums md5 83bc1f95b36fe51ade8d130fab390103 \ |
---|
24 | sha1 367923b1dad95c68b8e46db6888135b8b8d00807 \ |
---|
25 | rmd160 03387e1a43b17b7a977bcd8a5beb9b48c3cff24c |
---|
26 | |
---|
27 | use_configure no |
---|
28 | build {} |
---|
29 | |
---|
30 | destroot { |
---|
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 | |
---|