24 lines
638 B
Ruby
24 lines
638 B
Ruby
require 'formula'
|
|
|
|
class Dwdiff < Formula
|
|
homepage 'http://os.ghalkes.nl/dwdiff.html'
|
|
url 'http://os.ghalkes.nl/dist/dwdiff-2.0.9.tgz'
|
|
sha1 '01cb2230b9147347bcfd1770898e435e4a57fa25'
|
|
|
|
depends_on 'gettext'
|
|
depends_on 'icu4c'
|
|
|
|
def install
|
|
gettext = Formula['gettext']
|
|
icu4c = Formula['icu4c']
|
|
ENV.append "CFLAGS", "-I#{gettext.include} -I#{icu4c.include}"
|
|
ENV.append "LDFLAGS", "-L#{gettext.lib} -L#{icu4c.lib}"
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
|
|
# Remove non-English man pages
|
|
(man+"nl").rmtree
|
|
(man+"nl.UTF-8").rmtree
|
|
(share+"locale/nl").rmtree
|
|
end
|
|
end
|