class Asciidoc < Formula desc "Formatter/translator for text files to numerous formats. Includes a2x" homepage "http://asciidoc.org/" # This release is listed as final on GitHub, but not listed on asciidoc.org. url "https://github.com/asciidoc/asciidoc/archive/8.6.10.tar.gz" sha256 "9e52f8578d891beaef25730a92a6e723596ddbd07bfe0d2a56486fcf63a0b983" revision 1 head "https://github.com/asciidoc/asciidoc.git" bottle do cellar :any_skip_relocation sha256 "c82aaf006c1e61742f4b0d01106b34efa0bba4c7b315f31298b6cce1d9616947" => :high_sierra sha256 "c82aaf006c1e61742f4b0d01106b34efa0bba4c7b315f31298b6cce1d9616947" => :sierra sha256 "c82aaf006c1e61742f4b0d01106b34efa0bba4c7b315f31298b6cce1d9616947" => :el_capitan end depends_on "autoconf" => :build depends_on "docbook-xsl" => :build depends_on "docbook" def install ENV["XML_CATALOG_FILES"] = etc/"xml/catalog" system "autoconf" system "./configure", "--prefix=#{prefix}" inreplace %w[a2x.py asciidoc.py filters/code/code-filter.py filters/graphviz/graphviz2png.py filters/latex/latex2img.py filters/music/music2png.py filters/unwraplatex.py], "#!/usr/bin/env python2", "#!/usr/bin/python" # otherwise macOS's xmllint bails out inreplace "Makefile", "-f manpage", "-f manpage -L" system "make", "install" system "make", "docs" end def caveats <<~EOS If you intend to process AsciiDoc files through an XML stage (such as a2x for manpage generation) you need to add something like: export XML_CATALOG_FILES=#{etc}/xml/catalog to your shell rc file so that xmllint can find AsciiDoc's catalog files. See `man 1 xmllint' for more. EOS end test do (testpath/"test.txt").write("== Hello World!") system "#{bin}/asciidoc", "-b", "html5", "-o", "test.html", "test.txt" assert_match %r{\

Hello World!\}, File.read("test.html") end end