2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-08 15:00:25 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Dos2unix < Formula
|
2011-09-08 22:56:09 +00:00
|
|
|
homepage 'http://waterlan.home.xs4all.nl/dos2unix.html'
|
2014-01-13 04:11:44 +00:00
|
|
|
url 'http://waterlan.home.xs4all.nl/dos2unix/dos2unix-6.0.4.tar.gz'
|
|
|
|
sha1 '93d73148c09908a42dcbf5339312c9aa1f18ba7c'
|
2009-06-08 15:00:25 +00:00
|
|
|
|
2012-08-13 14:36:30 +00:00
|
|
|
depends_on 'gettext'
|
2011-06-29 15:47:52 +00:00
|
|
|
|
2014-01-14 04:57:43 +00:00
|
|
|
devel do
|
2014-02-06 17:53:15 +00:00
|
|
|
url 'http://waterlan.home.xs4all.nl/dos2unix/dos2unix-6.0.5-beta4.tar.gz'
|
|
|
|
sha1 '06ff18c3645dd04ef5cfa70c6d26357341b036be'
|
2014-01-14 04:57:43 +00:00
|
|
|
end
|
|
|
|
|
2009-06-08 15:00:25 +00:00
|
|
|
def install
|
2012-08-13 14:36:30 +00:00
|
|
|
gettext = Formula.factory("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
|
2014-01-14 02:54:53 +00:00
|
|
|
|
|
|
|
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
|
2009-06-08 15:00:25 +00:00
|
|
|
end
|