homebrew-core/Formula/basex.rb
2019-07-26 11:29:31 -04: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.4/BaseX924.zip"
version "9.2.4"
sha256 "be765b29c37f86f3f89b417adaa4e0e7b39783df5cc370351bd24ee679a33d12"
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