8e45392f63
Apache FOP (Formatting Objects Processor) is a print formatter driven by XSL formatting objects (XSL-FO) and an output independent formatter.
14 lines
348 B
Ruby
14 lines
348 B
Ruby
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
|