4f3502783d
Closes Homebrew/homebrew#26595. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
22 lines
628 B
Ruby
22 lines
628 B
Ruby
require 'formula'
|
|
|
|
class Csvprintf < Formula
|
|
homepage 'http://code.google.com/p/csvprintf/'
|
|
url 'http://csvprintf.googlecode.com/files/csvprintf-1.0.3.tar.gz'
|
|
sha1 'ee5ee6728a44cc7d0961b0960c7a444372752931'
|
|
|
|
def install
|
|
ENV.append 'LDFLAGS', '-liconv'
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
|
|
test do
|
|
IO.popen("#{bin}/csvprintf -i '%2$s %1$s\n'", "w+") do |pipe|
|
|
pipe.write "Last,First\nSmith,Fred\n"
|
|
pipe.close_write
|
|
assert_equal "Fred Smith\n", pipe.read
|
|
end
|
|
end
|
|
end
|