2015-07-31 19:37:39 +00:00
|
|
|
class AmdatuBootstrap < Formula
|
|
|
|
desc "Bootstrapping OSGi development"
|
|
|
|
homepage "http://amdatu.org/bootstrap/intro.html"
|
2016-01-03 20:47:28 +00:00
|
|
|
url "https://bitbucket.org/amdatu/amdatu-bootstrap/downloads/bootstrap-bin-r9.zip"
|
|
|
|
sha256 "937ef932a740665439ea0118ed417ff7bdc9680b816b8b3c81ecfd6d0fc4773b"
|
2015-07-31 19:37:39 +00:00
|
|
|
|
2015-12-11 15:13:20 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2015-07-31 19:37:39 +00:00
|
|
|
def install
|
|
|
|
libexec.install %w[amdatu-bootstrap bootstrap.jar conf]
|
|
|
|
bin.install_symlink "#{libexec}/amdatu-bootstrap" => "amdatu-bootstrap"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2016-01-03 20:47:28 +00:00
|
|
|
assert_match "Amdatu Bootstrap R9", shell_output("#{bin}/amdatu-bootstrap --info")
|
2015-07-31 19:37:39 +00:00
|
|
|
end
|
|
|
|
end
|