homebrew-core/Formula/basex.rb
Christian Gruen f40f7b34b1 basex 8.0.2
Closes Homebrew/homebrew#37539.

Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-03-09 20:00:23 -07:00

22 lines
509 B
Ruby

require 'formula'
class Basex < Formula
homepage 'http://basex.org'
url 'http://files.basex.org/releases/8.0.2/BaseX802.zip'
version '8.0.2'
sha1 'a02238639d3b5d66ea415fdabe6b46737f3aee2d'
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