homebrew-core/Formula/vault-cli.rb
2019-05-12 23:04:55 +02:00

25 lines
810 B
Ruby

class VaultCli < Formula
desc "Subversion-like utility to work with Jackrabbit FileVault"
homepage "https://jackrabbit.apache.org/filevault/index.html"
url "https://search.maven.org/remotecontent?filepath=org/apache/jackrabbit/vault/vault-cli/3.2.4/vault-cli-3.2.4-bin.tar.gz"
sha256 "99ffa96d145aa97692648bf34666fef731bfceba33b5b27cefce1125434d665c"
head "https://github.com/apache/jackrabbit-filevault.git"
bottle :unneeded
depends_on :java
def install
# Remove windows files
rm_f Dir["bin/*.bat"]
libexec.install Dir["*"]
bin.install Dir["#{libexec}/bin/*"]
bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env)
end
test do
# Bad test, but we're limited without a Jackrabbit repo to speak to...
system "#{bin}/vlt", "--version"
end
end