homebrew-core/Formula/fleetctl.rb

23 lines
598 B
Ruby
Raw Normal View History

2014-07-20 18:48:51 +00:00
require "formula"
class Fleetctl < Formula
2014-07-20 18:48:51 +00:00
homepage "https://github.com/coreos/fleet"
url "https://github.com/coreos/fleet/archive/v0.6.2.tar.gz"
sha1 "501f5ccdce3c0fdb1559c7bc13d9b7a28785d58d"
2014-07-20 18:48:51 +00:00
head "https://github.com/coreos/fleet.git"
2014-05-07 23:04:46 +00:00
bottle do
2014-08-06 23:32:21 +00:00
sha1 "7a68c1ad14596201d8c13259047951bf4c3081c7" => :mavericks
sha1 "eb2f8ec141aa3d7c6bdd5c81211d1e0777d78f13" => :mountain_lion
sha1 "057ab92b97d1ec66d6421dd378acf045b6ae3a83" => :lion
2014-05-07 23:04:46 +00:00
end
2014-07-20 18:48:51 +00:00
depends_on "go" => :build
def install
2014-07-20 18:48:51 +00:00
ENV["GOPATH"] = buildpath
system "./build"
2014-07-20 18:48:51 +00:00
bin.install "bin/fleetctl"
end
end