diff options
| author | David Xia | 2014-10-27 18:36:50 -0400 |
|---|---|---|
| committer | Mike McQuaid | 2014-10-31 15:41:02 +0000 |
| commit | 397624fe3d42e43411a95d8c3b81380aaf31bd03 (patch) | |
| tree | 1996e10a20114a91f944fcb9ca397e49784f18e8 | |
| parent | 13fbcb0453c8935405806144659b5c3310253b3c (diff) | |
| download | homebrew-397624fe3d42e43411a95d8c3b81380aaf31bd03.tar.bz2 | |
helios 0.8.41 (new formula)
This package supplies the command line executable for Helios,
a Docker container orchestration platform developed
and open-sourced by Spotify.
https://github.com/spotify/helios
Closes #33656.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/helios.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/helios.rb b/Library/Formula/helios.rb new file mode 100644 index 000000000..a6aadb751 --- /dev/null +++ b/Library/Formula/helios.rb @@ -0,0 +1,19 @@ +require "formula" + +class Helios < Formula + homepage "https://github.com/spotify/helios" + url "https://oss.sonatype.org/service/local/repositories/releases/content/com/spotify/helios-tools/0.8.41/helios-tools-0.8.41-shaded.jar" + sha1 "3a8d464494a36bea3bd81e28d10c64cb331cc3dc" + version "0.8.41" + + depends_on :java => "1.7" + + def install + libexec.install "helios-tools-0.8.41-shaded.jar" + bin.write_jar_script libexec/"helios-tools-0.8.41-shaded.jar", "helios" + end + + test do + system "#{bin}/helios", "--version" + end +end |
