homebrew-core/Formula/dos2unix.rb
Brett Koonce 9ccae5c9f4 dos2unix 6.0.3
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-19 20:03:53 -08:00

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.3.tar.gz'
sha1 '2c9ae9177fcb0d8b63d141f73a75c928c38ace01'
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