homebrew-core/Formula/texi2html.rb

22 lines
572 B
Ruby
Raw Normal View History

require 'formula'
class Texi2html < Formula
homepage 'http://www.nongnu.org/texi2html/'
url 'http://download.savannah.gnu.org/releases/texi2html/texi2html-1.70.tar.gz'
sha1 'b3472fb5ef80824177a56a1a37983c13497b23be'
keg_only :provided_by_osx unless MacOS.mountain_lion?
def install
# The install-sh, used if ginstall is not present, isn't executable!
chmod 0744, "install-sh"
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
def test
system "#{bin}/texi2html", "--help"
end
end