blob: 5844adc5e4ffcbfa713b9753452e252156c67e45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class CsvFix < Formula
homepage 'http://code.google.com/p/csvfix/'
url 'https://bitbucket.org/neilb/csvfix/get/version-1.3.zip'
sha1 '9d8c4c38abf4be722eb6e3fc967fd2eeb3bd2299'
def install
system "make lin"
bin.install 'csvfix/bin/csvfix'
end
end
|