homebrew-core/Formula/intltool.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
2009-10-15 16:48:03 +01:00

12 lines
337 B
Ruby

require 'formula'
class Intltool <Formula
@url='http://edge.launchpad.net/intltool/trunk/0.41.0/+download/intltool-0.41.0.tar.gz'
@homepage='http://www.freedesktop.org/wiki/Software/intltool'
@md5='8a6e4afd3fc93637dcd70e36ab899364'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end