1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name txt2man |
---|
5 | version 1.4.8 |
---|
6 | categories textproc |
---|
7 | maintainers ecronin@gizmolabs.org |
---|
8 | description Converts flat ASCII text to man page format |
---|
9 | long_description \ |
---|
10 | Txt2man converts flat ASCII text into the man page format. \ |
---|
11 | This allows man pages to be authored without knowledge of \ |
---|
12 | nroff macros. It is a shell script that uses GNU awk, and \ |
---|
13 | it should run on any Unix-like system. |
---|
14 | homepage http://mvertes.free.fr/ |
---|
15 | platforms darwin |
---|
16 | |
---|
17 | master_sites http://mvertes.free.fr/download/ |
---|
18 | |
---|
19 | checksums md5 2ee6d7cc38c42b98f4d8c1eb815bd888 \ |
---|
20 | sha1 aa3989546b31c05ad09d14b895bf5a1777beefe9 |
---|
21 | |
---|
22 | configure {} |
---|
23 | build {} |
---|
24 | |
---|
25 | destroot { system "install -m 755 -d ${destroot}${prefix}/bin" |
---|
26 | system "install -m 755 -d ${destroot}${prefix}/man/man1" |
---|
27 | system "install -m 755 ${worksrcpath}/${portname} \ |
---|
28 | ${destroot}${prefix}/bin/${portname}" |
---|
29 | system "install -m 644 ${worksrcpath}/${portname}.1 \ |
---|
30 | ${destroot}${prefix}/man/man1/${portname}.1"} |
---|