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 | PortSystem 1.0 |
---|
4 | name xlsx2csv |
---|
5 | version 1.2 |
---|
6 | categories textproc |
---|
7 | platforms darwin |
---|
8 | maintainers webfinish.com:kirk |
---|
9 | description Convert MS Word/Excel openspreadsheetML to plain CSV. |
---|
10 | long_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 | |
---|
15 | homepage http://kirk.webfinish.com/2009/12/xlsx2csv/ |
---|
16 | master_sites http://kirk.webfinish.com/xlsx2csv/ |
---|
17 | |
---|
18 | checksums md5 46735abccbcab2669eff465e50177e6f \ |
---|
19 | sha1 4fe04e26e58e05b50ae2c84626f6328e3caa3192 \ |
---|
20 | rmd160 885977d4df6b2a07228fa65a35198697ab5325d6 |
---|
21 | |
---|
22 | depends_lib port:libxslt \ |
---|
23 | port:gsed \ |
---|
24 | port:sqlite3 |
---|
25 | use_configure no |
---|
26 | build {} |
---|
27 | destroot { |
---|
28 | xinstall -m 755 -d ${destroot}${prefix}/bin |
---|
29 | xinstall -m 755 ${workpath}/xlsx2csv.sh ${destroot}${prefix}/bin |
---|
30 | } |
---|
31 | |
---|
32 | |
---|
33 | |
---|