basex 8.0

BaseX 8.0 update

For added features see the official
[announcement](http://basex.org/about-us/news/newsdetails/basex-80-the-xmlprague-2015-edition).

Closes Homebrew/homebrew#36666.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Michael 2015-02-09 12:32:55 +01:00 committed by Mike McQuaid
parent dcf6341a4d
commit cf6e612766

View file

@ -2,9 +2,9 @@ require 'formula'
class Basex < Formula
homepage 'http://basex.org'
url 'http://files.basex.org/releases/7.9/BaseX79.zip'
version '7.9'
sha1 'd5630ab597dfade196646d3ad38ea6b39593efe2'
url 'http://files.basex.org/releases/8.0/BaseX80.zip'
version '8.0'
sha1 'cb5eef33f44ad92b136e344766207acf863e98fa'
def install
rm Dir['bin/*.bat']
@ -17,6 +17,6 @@ class Basex < Formula
end
test do
assert_equal "1 2 3 4 5 6 7 8 9 10", shell_output("#{bin}/basex '1 to 10'")
assert_equal "1\n2\n3\n4\n5\n6\n7\n8\n9\n10", shell_output("#{bin}/basex '1 to 10'")
end
end