homebrew-core/Formula/vault-cli.rb

26 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.8/vault-cli-3.2.8-bin.tar.gz"
sha256 "dfb19ee7dbf86183336775865cd610c353f3d141c243cca722ce0b4bfef98abc"
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