Ticket #26367: Portfile

File Portfile, 1.0 KB (added by bithead2k, 14 years ago)
Line 
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$
3PortSystem 1.0
4name            xlsx2csv
5version         1.2
6categories      textproc
7platforms       darwin
8maintainers     webfinish.com:kirk
9description     Convert MS Word/Excel openspreadsheetML to plain CSV.
10long_description xlsx2csv is bash shell script which reads one Microsoft \
11                 Excel file and outputs all tabs contained insinde it \
12                 to CSV files. It handles dates and string data as well \
13                 as numeric.
14
15homepage        http://kirk.webfinish.com/2009/12/xlsx2csv/
16master_sites    http://kirk.webfinish.com/xlsx2csv/ 
17
18checksums     md5    46735abccbcab2669eff465e50177e6f \
19              sha1   4fe04e26e58e05b50ae2c84626f6328e3caa3192 \
20              rmd160 885977d4df6b2a07228fa65a35198697ab5325d6
21
22depends_lib     port:libxslt \
23                port:gsed \
24                port:sqlite3
25use_configure   no
26build {}
27destroot {
28  xinstall -m 755 -d ${destroot}${prefix}/bin
29  xinstall -m 755 ${workpath}/xlsx2csv.sh ${destroot}${prefix}/bin
30}
31
32
33