2010-07-26 00:48:40 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Dwdiff < Formula
|
2010-07-26 00:48:40 +00:00
|
|
|
homepage 'http://os.ghalkes.nl/dwdiff.html'
|
2012-08-06 01:56:49 +00:00
|
|
|
url 'http://os.ghalkes.nl/dist/dwdiff-2.0.4.tgz'
|
|
|
|
sha1 '543a87f3de8c156d20b3ddf2bffd9331b7fb0575'
|
2010-07-26 00:48:40 +00:00
|
|
|
|
|
|
|
depends_on 'gettext'
|
|
|
|
depends_on 'icu4c'
|
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
gettext = Formula.factory('gettext')
|
|
|
|
icu4c = Formula.factory('icu4c')
|
|
|
|
ENV.append "CFLAGS", "-I#{gettext.include} -I#{icu4c.include}"
|
|
|
|
ENV.append "LDFLAGS", "-L#{gettext.lib} -L#{icu4c.lib}"
|
2010-07-26 00:48:40 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
2012-03-11 04:13:26 +00:00
|
|
|
|
|
|
|
# Remove non-English man pages
|
|
|
|
(man+"nl").rmtree
|
|
|
|
(man+"nl.UTF-8").rmtree
|
|
|
|
(share+"locale/nl").rmtree
|
2010-07-26 00:48:40 +00:00
|
|
|
end
|
|
|
|
end
|