42 lines
1.5 KiB
Ruby
42 lines
1.5 KiB
Ruby
class Texi2html < Formula
|
|
desc "Convert TeXinfo files to HTML"
|
|
homepage "https://www.nongnu.org/texi2html/"
|
|
url "https://download.savannah.gnu.org/releases/texi2html/texi2html-5.0.tar.gz"
|
|
sha256 "e60edd2a9b8399ca615c6e81e06fa61946ba2f2406c76cd63eb829c91d3a3d7d"
|
|
license "GPL-2.0"
|
|
|
|
livecheck do
|
|
skip "No longer developed or maintained"
|
|
end
|
|
|
|
bottle do
|
|
rebuild 2
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "03feaacb6b615ca2dda676bf5fe4f9551c488a851ccd1e89b12d257a5c7d932b"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "4ad9c71802c3258a3c0c7ff8800ddd70cc230ddfecc095080d0144ba153bc2dc"
|
|
sha256 cellar: :any_skip_relocation, catalina: "10f6d76de400799fb21dc900a2344ef444d43658dd502f0c040ad7c0a4bf0fbb"
|
|
sha256 cellar: :any_skip_relocation, mojave: "10f6d76de400799fb21dc900a2344ef444d43658dd502f0c040ad7c0a4bf0fbb"
|
|
sha256 cellar: :any_skip_relocation, high_sierra: "10f6d76de400799fb21dc900a2344ef444d43658dd502f0c040ad7c0a4bf0fbb"
|
|
end
|
|
|
|
depends_on "gettext"
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}",
|
|
"--mandir=#{man}", "--infodir=#{info}"
|
|
chmod 0755, "./install-sh"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.texinfo").write <<~EOS
|
|
@ifnottex
|
|
@node Top
|
|
@top Hello World!
|
|
@end ifnottex
|
|
@bye
|
|
EOS
|
|
system "#{bin}/texi2html", "test.texinfo"
|
|
assert_match "Hello World!", File.read("test.html")
|
|
end
|
|
end
|