diff options
| -rw-r--r-- | Library/Formula/saxon-b.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/saxon-b.rb b/Library/Formula/saxon-b.rb new file mode 100644 index 000000000..01d044892 --- /dev/null +++ b/Library/Formula/saxon-b.rb @@ -0,0 +1,13 @@ +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 |
