8a17031b17
Closes Homebrew/homebrew#25859. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
20 lines
607 B
Ruby
20 lines
607 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'
|
|
|
|
def install
|
|
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"
|
|
end
|
|
end
|