homebrew-core/Formula/itstool.rb

24 lines
517 B
Ruby
Raw Normal View History

require 'formula'
class Itstool < Formula
homepage 'http://itstool.org/'
2013-11-13 05:34:03 +00:00
url 'http://files.itstool.org/itstool/itstool-2.0.0.tar.bz2'
sha256 '14708111b11b4a70e240e3b404d7a58941e61dbb5caf7e18833294d654c09169'
2013-09-20 15:15:57 +00:00
head do
url 'git://gitorious.org/itstool/itstool.git'
2013-09-20 15:15:57 +00:00
depends_on :autoconf
depends_on :automake
end
2013-11-13 05:34:03 +00:00
depends_on :python
depends_on 'libxml2'
def install
system "./autogen.sh" if build.head?
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end