diff options
| author | turadg | 2010-09-17 14:07:00 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-10-20 22:24:38 -0700 |
| commit | 959edff75eab0e950d38be441c75f7c72c5210a0 (patch) | |
| tree | a3ee449503ed0e847cc4a72ee7390ff734f39761 /Library/Formula/csv-fix.rb | |
| parent | 332702dd3ad9bac2178835c0015da5ad8ce620bf (diff) | |
| download | homebrew-959edff75eab0e950d38be441c75f7c72c5210a0.tar.bz2 | |
Added CSVfix
CSVfix is a command-line stream editor specifically designed to deal with
CSV data.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/csv-fix.rb')
| -rw-r--r-- | Library/Formula/csv-fix.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/csv-fix.rb b/Library/Formula/csv-fix.rb new file mode 100644 index 000000000..41ce1b41c --- /dev/null +++ b/Library/Formula/csv-fix.rb @@ -0,0 +1,13 @@ +require 'formula' + +class CsvFix <Formula + url 'http://csvfix.googlecode.com/files/csvfix_src_097a.zip' + homepage 'http://code.google.com/p/csvfix/' + version '0.97a' + sha1 'f990ba6676159dc27e0d90aee02d1eb043140c5f' + + def install + system "make lin" + bin.install 'bin/csvfix' + end +end |
