homebrew-core/Formula/basex.rb

28 lines
715 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.3.1/BaseX931.zip"
version "9.3.1"
sha256 "87114c79888dee0dbbe4ed18b8aca5636f054f15af5682a153b9d66ebcb354e4"
revision 1
bottle :unneeded
depends_on "openjdk"
def install
rm Dir["bin/*.bat"]
rm_rf "repo"
rm_rf "data"
rm_rf "etc"
prefix.install_metafiles
libexec.install Dir["*"]
bin.install Dir["#{libexec}/bin/*"]
bin.env_script_all_files libexec/"bin", :JAVA_HOME => Formula["openjdk"].opt_prefix
end
test do
assert_equal "1\n2\n3\n4\n5\n6\n7\n8\n9\n10", shell_output("#{bin}/basex '1 to 10'")
end
end