aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/batik.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/batik.rb b/Library/Formula/batik.rb
new file mode 100644
index 000000000..e0497c548
--- /dev/null
+++ b/Library/Formula/batik.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Batik < Formula
+ homepage 'https://xmlgraphics.apache.org/batik/'
+ url 'http://www.us.apache.org/dist/xmlgraphics/batik/batik-1.7.zip'
+ sha1 '69d974ab0a4e13cbdd649fa96785776563b73fcf'
+
+ def install
+ doc.install Dir['docs/*']
+ libexec.install 'lib', Dir['*.jar']
+
+ bin.write_jar_script libexec/'batik-rasterizer.jar', 'batik-rasterizer'
+ bin.write_jar_script libexec/'batik.jar', 'batik'
+ end
+end