2012-09-10 17:06:17 +00:00
|
|
|
class Basex < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Light-weight XML database and XPath/XQuery processor"
|
2015-07-06 16:56:23 +00:00
|
|
|
homepage "http://basex.org"
|
2016-03-03 19:45:44 +00:00
|
|
|
url "http://files.basex.org/releases/8.4.1/BaseX841.zip"
|
|
|
|
version "8.4.1"
|
|
|
|
sha256 "9a7431cf4eb8e3702ab23e19ee2a782cf0cb262885c55306b82a6efcaa0dbce8"
|
2012-09-10 17:06:17 +00:00
|
|
|
|
2015-10-22 13:09:25 +00:00
|
|
|
bottle :unneeded
|
2015-04-16 22:59:59 +00:00
|
|
|
|
2012-09-10 17:06:17 +00:00
|
|
|
def install
|
2015-07-06 16:56:23 +00:00
|
|
|
rm Dir["bin/*.bat"]
|
2012-09-10 17:06:17 +00:00
|
|
|
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["*"]
|
2012-09-10 17:06:17 +00:00
|
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
|
|
|
end
|
|
|
|
|
2013-03-25 18:18:14 +00:00
|
|
|
test do
|
2015-02-09 11:32:55 +00:00
|
|
|
assert_equal "1\n2\n3\n4\n5\n6\n7\n8\n9\n10", shell_output("#{bin}/basex '1 to 10'")
|
2012-09-10 17:06:17 +00:00
|
|
|
end
|
|
|
|
end
|