aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/csv-fix.rb
blob: 41ce1b41c7f89238a2f7043250fa097d7112a5a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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