homebrew-core/Formula/texi2html.rb
mbcoguno b050517c77 Fix missing keg-only on pre-Mountain Lion formulae.
Closes Homebrew/homebrew#15375.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-10 08:51:02 -07:00

19 lines
518 B
Ruby

require 'formula'
class Texi2html < Formula
homepage 'http://www.nongnu.org/texi2html/'
url 'http://download.savannah.gnu.org/releases/texi2html/texi2html-1.82.tar.gz'
sha1 'e7bbe1197147566250abd5c456b94c8e37e0a81f'
keg_only :provided_pre_mountain_lion
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}",
"--mandir=#{man}", "--infodir=#{info}"
system "make install"
end
def test
system "#{bin}/texi2html", "--help"
end
end