blob: f246992f18dadd915f9b604ca884db07ad6c21db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Saxon < Formula
homepage "http://saxon.sourceforge.net"
url "http://downloads.sourceforge.net/project/saxon/Saxon-HE/9.4/SaxonHE9-4-0-2J.zip"
md5 "8ed3a09ce2e8a5c82247650c86e9e1b4"
version "9.4.0.2"
def shim_script target
<<-EOS.undent
#!/bin/bash
java -jar "#{libexec}/saxon9he.jar" "$@"
EOS
end
def install
libexec.install Dir["*"]
(bin+'saxon').write shim_script('saxon')
end
end
|