blob: 6fb22946550f3948099d5965d462fb577b9d294c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Fop < Formula
  homepage "http://xmlgraphics.apache.org/fop/index.html"
  url "http://www.apache.org/dyn/closer.cgi?path=/xmlgraphics/fop/binaries/fop-1.1-bin.tar.gz"
  sha1 '6b96c3f3fd5efe9f2b6b54bfa96161ec3f6a1dbc'
  def install
    libexec.install Dir["*"]
    bin.write_exec_script libexec/'fop'
  end
end
  |