homebrew-core/Formula/basex.rb
2017-03-03 20:02:44 +01: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.6.1/BaseX861.zip"
version "8.6.1"
sha256 "2f0c64aa1049a1a75aec0e3ec2ae40b0286077743d817c82e0c0471c5f9d6bb6"
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