diff options
| author | Adam Vandenberg | 2014-04-25 19:55:31 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-04-25 20:19:22 -0700 |
| commit | 096cb91bfe1e08c217aeb99555bbe8957c2b07ec (patch) | |
| tree | f7e341d5533bb85e19bc1fbeccd4d57fed1e6005 /Library/Formula/csv-fix.rb | |
| parent | 4e007bad0d373eae08aff874c7ac04a7180eb485 (diff) | |
| download | homebrew-096cb91bfe1e08c217aeb99555bbe8957c2b07ec.tar.bz2 | |
csv-fix 1.6
Closes #26842.
Diffstat (limited to 'Library/Formula/csv-fix.rb')
| -rw-r--r-- | Library/Formula/csv-fix.rb | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/Library/Formula/csv-fix.rb b/Library/Formula/csv-fix.rb index 62c8574e8..8ce3cf8fa 100644 --- a/Library/Formula/csv-fix.rb +++ b/Library/Formula/csv-fix.rb @@ -1,13 +1,19 @@ -require 'formula' +require "formula" class CsvFix < Formula - homepage 'http://code.google.com/p/csvfix/' - url 'https://bitbucket.org/neilb/csvfix/get/version-1.3.zip' - sha1 '2bca2d461434e7bd799e6c886d8eda769e7d3937' + homepage "http://code.google.com/p/csvfix/" + url "https://bitbucket.org/neilb/csvfix/get/version-1.6.tar.gz" + sha1 "ca770b47f2e08a09350c4005e6ab3c524798b440" + + needs :cxx11 def install + # clang on Mt. Lion will try to build against libstdc++, + # despite -std=gnu++0x + ENV.libcxx + system "make lin" - bin.install 'csvfix/bin/csvfix' + bin.install "csvfix/bin/csvfix" end test do |
