15 lines
348 B
Ruby
15 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
|