aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/csv-fix.rb
blob: 7bad9e3dcf52ff56e62a55a71e8da72c16b1ccac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require "formula"

class CsvFix < Formula
  homepage "http://neilb.bitbucket.org/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"
  end

  test do
    IO.popen("#{bin}/csvfix trim", "w+") do |pipe|
      pipe.write "foo , bar \n"
      pipe.close_write
      assert_equal %{"foo","bar"\n}, pipe.read
    end
  end
end