homebrew-core/Formula/basex.rb
Johan Mörén ac9a4b2c03 basex 8.3.1
Closes Homebrew/homebrew#45456.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-10-29 23:21:35 +00:00

23 lines
598 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.3.1/BaseX831.zip"
version "8.3.1"
sha256 "e0bdf96c61736fe15ed4bae5240d91ed516d7cc2515be021302528e536066a21"
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