diff options
| author | Brian Waldon | 2014-05-07 15:56:05 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-07 18:10:58 -0700 |
| commit | 0a94cbe568e35329c8da382af816d976aa7d50d7 (patch) | |
| tree | 2a3c300e6c5185ee6c942a8c2c9e086a16e36048 /Library/Formula | |
| parent | 656c8f9138076ab9ebe4836194b2d42a224e1d22 (diff) | |
| download | homebrew-0a94cbe568e35329c8da382af816d976aa7d50d7.tar.bz2 | |
fleetctl 0.3.0 (new formula)
Closes #29046.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fleetctl.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/fleetctl.rb b/Library/Formula/fleetctl.rb new file mode 100644 index 000000000..9148f2471 --- /dev/null +++ b/Library/Formula/fleetctl.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Fleetctl < Formula + homepage 'https://github.com/coreos/fleet' + url 'https://github.com/coreos/fleet/archive/v0.3.0.tar.gz' + sha1 'fcce42bca624541f890d5ac61c79fd60a0718407' + head 'https://github.com/coreos/fleet.git' + + depends_on 'go' => :build + + def install + ENV['GOPATH'] = buildpath + system "./build" + bin.install 'bin/fleetctl' + end +end |
