homebrew-core/Formula/basex.rb

24 lines
598 B
Ruby
Raw Normal View History

class Basex < Formula
desc "Light-weight XML database and XPath/XQuery processor"
2015-07-06 16:56:23 +00:00
homepage "http://basex.org"
2017-03-03 19:02:44 +00:00
url "http://files.basex.org/releases/8.6.1/BaseX861.zip"
version "8.6.1"
sha256 "2f0c64aa1049a1a75aec0e3ec2ae40b0286077743d817c82e0c0471c5f9d6bb6"
2015-10-22 13:09:25 +00:00
bottle :unneeded
2015-04-16 22:59:59 +00:00
def install
2015-07-06 16:56:23 +00:00
rm Dir["bin/*.bat"]
rm_rf "repo"
rm_rf "data"
rm_rf "etc"
2013-06-02 18:40:34 +00:00
prefix.install_metafiles
2015-07-06 16:56:23 +00:00
libexec.install Dir["*"]
bin.install_symlink Dir["#{libexec}/bin/*"]
end
2013-03-25 18:18:14 +00:00
test do
assert_equal "1\n2\n3\n4\n5\n6\n7\n8\n9\n10", shell_output("#{bin}/basex '1 to 10'")
end
end