homebrew-core/Formula/basex.rb
Joe Wicentowski 1e5f43c19b
basex 9.2.2
Closes #40610.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-06-02 09:03:34 -07:00

25 lines
628 B
Ruby

class Basex < Formula
desc "Light-weight XML database and XPath/XQuery processor"
homepage "http://basex.org"
url "http://files.basex.org/releases/9.2.2/BaseX922.zip"
version "9.2.2"
sha256 "9d36eb43fcf3d9d82f90afc16d8d5341062cfe38e2b17259a691792a8f5ef76c"
bottle :unneeded
depends_on :java => "1.8+"
def install
rm Dir["bin/*.bat"]
rm_rf "repo"
rm_rf "data"
rm_rf "etc"
prefix.install_metafiles
libexec.install Dir["*"]
bin.install_symlink Dir["#{libexec}/bin/*"]
end
test do
assert_equal "1\n2\n3\n4\n5\n6\n7\n8\n9\n10", shell_output("#{bin}/basex '1 to 10'")
end
end