60d1cbda9f
Closes Homebrew/homebrew#25312.
13 lines
352 B
Ruby
13 lines
352 B
Ruby
require 'formula'
|
|
|
|
class Saxon < Formula
|
|
homepage "http://saxon.sourceforge.net"
|
|
url 'http://downloads.sourceforge.net/project/saxon/Saxon-HE/9.5/SaxonHE9-5-1-3J.zip'
|
|
sha1 '68ca55a1b13d404a152098f003ff5b3a6941784e'
|
|
version '9.5.1.3'
|
|
|
|
def install
|
|
libexec.install Dir["*"]
|
|
bin.write_jar_script libexec/'saxon9he.jar', 'saxon'
|
|
end
|
|
end
|