homebrew-core/Formula/basex.rb

23 lines
495 B
Ruby
Raw Normal View History

require 'formula'
class Basex < Formula
homepage 'http://basex.org'
url 'http://files.basex.org/releases/7.9/BaseX79.zip'
version '7.9'
sha1 'd5630ab597dfade196646d3ad38ea6b39593efe2'
def install
rm Dir['bin/*.bat']
rm_rf "repo"
rm_rf "data"
rm_rf "etc"
2013-06-02 18:40:34 +00:00
prefix.install_metafiles
libexec.install Dir['*']
bin.install_symlink Dir["#{libexec}/bin/*"]
end
2013-03-25 18:18:14 +00:00
test do
2014-05-04 19:12:41 +00:00
assert_equal "1 2 3 4 5 6 7 8 9 10", shell_output("#{bin}/basex '1 to 10'")
end
end