4721a7d3ee
Closes Homebrew/homebrew#48979. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
23 lines
593 B
Ruby
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.4/BaseX84.zip"
|
|
version "8.4"
|
|
sha256 "191c7d5a2a60883f74e52c0d6648d812831794e7caee49c439035e68c266241d"
|
|
|
|
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
|