64 lines
2.3 KiB
Ruby
64 lines
2.3 KiB
Ruby
class Fop < Formula
|
|
desc "XSL-FO print formatter for making PDF or PS documents"
|
|
homepage "https://xmlgraphics.apache.org/fop/index.html"
|
|
url "https://www.apache.org/dyn/closer.lua?path=xmlgraphics/fop/binaries/fop-2.8-bin.tar.gz"
|
|
mirror "https://archive.apache.org/dist/xmlgraphics/fop/binaries/fop-2.8-bin.tar.gz"
|
|
sha256 "88bbc6037705bf5ca62604445d9922fe134bd527c502f02ead4a5aa713b4ee91"
|
|
license "Apache-2.0"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "106b70ddf0af25c564c147ce57368ca6d16d5a1f91b75361b5bcaf2bdd110d90"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
resource "hyph" do
|
|
url "https://downloads.sourceforge.net/project/offo/offo-hyphenation/2.2/offo-hyphenation-compiled.zip"
|
|
sha256 "3b503122b488bd30f658e9757c3b3066dd7a59f56c3a9bbb3eaae2d23b7d883f"
|
|
end
|
|
|
|
def install
|
|
rm_rf Dir["fop/*.bat"] # Remove Windows files.
|
|
libexec.install Dir["*"]
|
|
|
|
executable = libexec/"fop/fop"
|
|
executable.chmod 0555
|
|
(bin/"fop").write_env_script executable, JAVA_HOME: Formula["openjdk"].opt_prefix
|
|
|
|
resource("hyph").stage do
|
|
(libexec/"fop/build").install "fop-hyph.jar"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.xml").write "<name>Homebrew</name>"
|
|
(testpath/"test.xsl").write <<~EOS
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:fo="http://www.w3.org/1999/XSL/Format">
|
|
<xsl:output method="xml" indent="yes"/>
|
|
<xsl:template match="/">
|
|
<fo:root>
|
|
<fo:layout-master-set>
|
|
<fo:simple-page-master master-name="A4-portrait"
|
|
page-height="29.7cm" page-width="21.0cm" margin="2cm">
|
|
<fo:region-body/>
|
|
</fo:simple-page-master>
|
|
</fo:layout-master-set>
|
|
<fo:page-sequence master-reference="A4-portrait">
|
|
<fo:flow flow-name="xsl-region-body">
|
|
<fo:block>
|
|
Hello, <xsl:value-of select="name"/>!
|
|
</fo:block>
|
|
</fo:flow>
|
|
</fo:page-sequence>
|
|
</fo:root>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|
|
EOS
|
|
system bin/"fop", "-xml", "test.xml", "-xsl", "test.xsl", "-pdf", "test.pdf"
|
|
assert_predicate testpath/"test.pdf", :exist?
|
|
end
|
|
end
|