b050517c77
Closes Homebrew/homebrew#15375. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
19 lines
518 B
Ruby
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
|