homebrew-core/Formula/dos2unix.rb

34 lines
905 B
Ruby
Raw Normal View History

require 'formula'
2009-06-08 15:00:25 +00:00
2011-03-10 05:11:03 +00:00
class Dos2unix < Formula
homepage 'http://waterlan.home.xs4all.nl/dos2unix.html'
url 'http://waterlan.home.xs4all.nl/dos2unix/dos2unix-6.0.4.tar.gz'
sha1 '93d73148c09908a42dcbf5339312c9aa1f18ba7c'
2009-06-08 15:00:25 +00:00
depends_on 'gettext'
devel do
url 'http://waterlan.home.xs4all.nl/dos2unix/dos2unix-6.0.5-beta11.tar.gz'
sha1 'f7d17dc4dbf723c81d1459b9664fc8045a77541d'
end
2009-06-08 15:00:25 +00:00
def install
2014-02-25 05:19:22 +00:00
gettext = Formula["gettext"]
system "make", "prefix=#{prefix}",
"CC=#{ENV.cc}",
"CPP=#{ENV.cc}",
"CFLAGS=#{ENV.cflags}",
"CFLAGS_OS=-I#{gettext.include}",
"LDFLAGS_EXTRA=-L#{gettext.lib} -lintl",
"install"
2009-06-08 15:00:25 +00:00
end
test do
path = testpath/"test.txt"
path.write "foo\r\nbar\r\n"
system "#{bin}/dos2unix", path
assert_equal "foo\nbar\n", path.read
end
2009-06-08 15:00:25 +00:00
end