blob: 7d93697bcf60cad5171f5cd857f535ad0e801006 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class CsvFix < Formula
homepage 'http://code.google.com/p/csvfix/'
url 'http://csvfix.googlecode.com/files/csvfix_src_110a.zip'
version '1.1a'
sha1 'd579c6223a9570e207b9e9b9eccb7f621916e673'
def install
system "make lin"
bin.install 'csvfix/bin/csvfix'
end
end
|