Subjectively

dd if=/dev/random | kirk > blog

Subjectively header image 2

macports portfile for xlsx2csv

January 22nd, 2010 · No Comments · Uncategorized

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- 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
# $Id$
PortSystem       1.0
name		xlsx2csv
version		1.1
categories	textproc
platforms	darwin
maintainers	webfinish.com:kirk
description	Convert MS Word/Excel openspreadsheetML to plain CSV.
long_description xlsx2csv is bash shell script which reads one Microsoft \
		 Excel file and outputs all tabs contained insinde it \
		 to CSV files. It handles dates and string data as well \
		 as numeric. 
 
homepage	http://kirk.webfinish.com/2009/12/xlsx2csv/
master_sites	http://kirk.webfinish.com/xlsx2csv/ 
 
checksums     md5    a5625497acffa71adca1eddc2dc3414a \
              sha1   4902fbb091342aad51d2baf4e566f3e64287d8be \
              rmd160 5704096dfcec3cec810fc7b46eb592a31d2ca30b
 
depends_lib	port:libxslt \
                port:gsed \
                port:sqlite3
use_configure	no
build {}
destroot {
  xinstall -m 755 -d ${destroot}${prefix}/bin
  xinstall -m 755 ${workpath}/xlsx2csv.sh ${destroot}${prefix}/bin
}

Tags:

No Comments so far ↓

There are no comments yet...Kick things off by filling out the form below.

Leave a Comment

You must log in to post a comment.