1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name makeztxt |
---|
6 | version 1.60 |
---|
7 | categories palm textproc |
---|
8 | platforms darwin |
---|
9 | maintainers cssdev@mac.com |
---|
10 | |
---|
11 | description converts text files into Palm zTXT databases |
---|
12 | |
---|
13 | long_description makeztxt is a simple commandline program \ |
---|
14 | that takes a plain ASCII text file and compresses it into \ |
---|
15 | a zTXT database. makeztxt will remove newline characters \ |
---|
16 | at the end of lines that contain text so that the \ |
---|
17 | paragraphs flow better on the Palm screen. makeztxt \ |
---|
18 | supports the use of regular expressions to automatically \ |
---|
19 | generate a list of bookmarks for you. Lastly, makeztxt \ |
---|
20 | can also break an existing zTXT file into it's components \ |
---|
21 | (text, bookmarks, annotations) and store them into \ |
---|
22 | separate files for you. |
---|
23 | |
---|
24 | homepage http://gutenpalm.sourceforge.net/makeztxt.php |
---|
25 | distname ${name}-${version}-src |
---|
26 | master_sites sourceforge |
---|
27 | master_sites.mirror_subdir gutenpalm |
---|
28 | checksums md5 d2f4166191b8ddd1033252de2d4680b5 |
---|
29 | |
---|
30 | worksrcdir ${name}-${version} |
---|
31 | use_configure no |
---|
32 | build.args USEPOSIX=1 |
---|
33 | |
---|
34 | destroot { |
---|
35 | xinstall -m 755 -d ${destroot}${prefix}/bin |
---|
36 | xinstall -m 755 -s ${worksrcpath}/makeztxt ${destroot}${prefix}/bin |
---|
37 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
38 | xinstall -m 644 -W ${worksrcpath} COPYING README \ |
---|
39 | ${destroot}${prefix}/share/doc/${name} |
---|
40 | xinstall -m 644 ${worksrcpath}/.makeztxtrc \ |
---|
41 | ${destroot}${prefix}/share/doc/${name}/makeztxtrc |
---|
42 | } |
---|