7d01410750
Closes Homebrew/homebrew#10634. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
346 B
Ruby
13 lines
346 B
Ruby
require 'formula'
|
|
|
|
class SaxonB < Formula
|
|
homepage 'http://saxon.sourceforge.net/'
|
|
url 'http://downloads.sourceforge.net/project/saxon/Saxon-B/9.1.0.8/saxonb9-1-0-8j.zip'
|
|
version '9.1.0.8'
|
|
md5 'b1d08c1e2483e31021ed6e59c281c369'
|
|
|
|
def install
|
|
system "mkdir saxon-b; mv *.jar doc notices saxon-b/"
|
|
share.install Dir['*']
|
|
end
|
|
end
|