1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name docx2txt |
---|
7 | version 1.4 |
---|
8 | categories textproc |
---|
9 | maintainers nomaintainer |
---|
10 | license GPL-3+ |
---|
11 | description Converts Docx documents to equivalent text documents. |
---|
12 | long_description Perl-based command line utility to convert Microsoft Office(Tm) Docx documents to equivalent Text documents. |
---|
13 | |
---|
14 | homepage http://${name}.sourceforge.net/ |
---|
15 | platforms darwin |
---|
16 | extract.suffix .tgz |
---|
17 | master_sites http://sourceforge.net/projects/${name}/files/${name}/v${version}/ |
---|
18 | |
---|
19 | checksums rmd160 21f96cc49362767de5d76fcf350c61fd622c15b8 \ |
---|
20 | sha256 b297752910a404c1435e703d5aedb4571222bd759fa316c86ad8c8bbe58c6d1b |
---|
21 | |
---|
22 | use_configure no |
---|
23 | build {} |
---|
24 | destroot.args BINDIR=${destroot}${prefix}/bin CONFIGDIR=${destroot}${prefix}/etc |
---|
25 | destroot.target |
---|
26 | post-destroot { |
---|
27 | file rename ${destroot}${prefix}/bin/${name}.pl ${destroot}${prefix}/bin/${name} |
---|
28 | } |
---|
29 | |
---|
30 | #livecheck.type sourceforge |
---|
31 | livecheck.type regex |
---|
32 | livecheck.url http://sourceforge.net/projects/docx2txt/files/docx2txt/ |
---|
33 | livecheck.regex v(\\d+(\\.\\d+)+) |
---|