aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/csv-fix.rb
blob: 4174ed0107d4c2e92d9555c0f4f9c4a7c530f7e8 (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_120.zip'
  version '1.20'
  sha1 'ec0b6d491429d908a9208d6e474591f30dec654c'

  def install
    system "make lin"
    bin.install 'csvfix/bin/csvfix'
  end
end