homebrew-core/Formula/asciidoctorj.rb

47 lines
1.3 KiB
Ruby

class Asciidoctorj < Formula
desc "Java wrapper and bindings for Asciidoctor"
homepage "https://github.com/asciidoctor/asciidoctorj"
url "https://search.maven.org/remotecontent?filepath=org/asciidoctor/asciidoctorj/2.4.3/asciidoctorj-2.4.3-bin.zip"
sha256 "3f51281ac38a13cf277215dc14381de4a035862e5d99bbbbf1f0cd6216403a2b"
license "Apache-2.0"
bottle :unneeded
depends_on "openjdk"
def install
rm_rf Dir["bin/*.bat"] # Remove Windows files.
libexec.install Dir["*"]
(bin/"asciidoctorj").write_env_script libexec/"bin/asciidoctorj", JAVA_HOME: Formula["openjdk"].opt_prefix
end
test do
(testpath/"test.adoc").write <<~EOS
= AsciiDoc is Writing Zen
Random J. Author <rjauthor@example.com>
:icons: font
Hello, World!
== Syntax Highlighting
Python source.
[source, python]
----
import something
----
List
- one
- two
- three
EOS
system bin/"asciidoctorj", "-b", "html5", "-o", "test.html", "test.adoc"
assert_match "<h1>AsciiDoc is Writing Zen</h1>", File.read("test.html")
system bin/"asciidoctorj", "-r", "asciidoctor-pdf", "-b", "pdf", "-o", "test.pdf", "test.adoc"
assert_match "/Title (AsciiDoc is Writing Zen)", File.read("test.pdf", mode: "rb")
end
end