34 lines
995 B
Ruby
34 lines
995 B
Ruby
require 'formula'
|
|
|
|
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'
|
|
|
|
depends_on 'gettext'
|
|
|
|
devel do
|
|
url 'http://waterlan.home.xs4all.nl/dos2unix/dos2unix-6.0.5-beta5.tar.gz'
|
|
sha1 'a15c440c0a3b4c7cbe987b7d42b2ceb764663718'
|
|
end
|
|
|
|
def install
|
|
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"
|
|
end
|
|
|
|
test do
|
|
(testpath/'dosfile.txt').write("File with CRLFs\r\nThey will be converted")
|
|
system "#{bin}/dos2unix", 'dosfile.txt'
|
|
open('dosfile.txt') do |f|
|
|
converted = f.read(64)
|
|
fail if converted.include?("\r")
|
|
end
|
|
end
|
|
end
|