7445917078
Closes Homebrew/homebrew#26669. Signed-off-by: Brett Koonce <koonce@gmail.com>
25 lines
560 B
Ruby
25 lines
560 B
Ruby
require 'formula'
|
|
|
|
class Basex < Formula
|
|
homepage 'http://basex.org'
|
|
url 'http://files.basex.org/releases/7.8/BaseX78.zip'
|
|
version '7.8'
|
|
sha1 'a0aa765aa5090dfff803a777fee15d3e04bdbfad'
|
|
|
|
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
|
|
require 'open3'
|
|
Open3.popen3("#{bin}/basex", "1 to 10") do |_, stdout, _|
|
|
assert_equal "1 2 3 4 5 6 7 8 9 10", stdout.read
|
|
end
|
|
end
|
|
end
|