Adding Apache FOP

Apache FOP (Formatting Objects Processor) is a print formatter driven by XSL
formatting objects (XSL-FO) and an output independent formatter.
This commit is contained in:
Austin Ziegler 2009-09-27 23:06:02 -04:00 committed by Max Howell
parent e55cfe5d2c
commit 8e45392f63

14
Formula/fop.rb Normal file
View file

@ -0,0 +1,14 @@
require 'brewkit'
# TODO common aliases: apache-fop
class Fop <Formula
version "0.95"
homepage "http://xmlgraphics.apache.org/fop/index.html"
url "http://mirrors.ibiblio.org/pub/mirrors/apache/xmlgraphics/fop/binaries/fop-#{@version}-bin.tar.gz"
md5 "7af50bf58924dd22d71d22d8ad90b268"
def install
prefix.install Dir["*"]
end
end