homebrew-core/Formula/basex.rb
Johan Mörén 175067edd5 basex 8.6
Closes #9269.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2017-01-26 10:04:24 +01:00

23 lines
593 B
Ruby

class Basex < Formula
desc "Light-weight XML database and XPath/XQuery processor"
homepage "http://basex.org"
url "http://files.basex.org/releases/8.6/BaseX86.zip"
version "8.6"
sha256 "1533b24f874402fa9183f99f101914313f953712391240bec3142e9441620505"
bottle :unneeded
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