7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
12 lines
334 B
Ruby
12 lines
334 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
|