2013-10-11 10:13:14 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Etcdctl < Formula
|
|
|
|
homepage 'https://github.com/coreos/etcdctl'
|
2014-02-09 13:44:33 +00:00
|
|
|
url 'https://github.com/coreos/etcdctl/archive/v0.3.0.tar.gz'
|
|
|
|
sha1 '3bc5fae34d40c1717e82a7af4ed177c62dbe22af'
|
2013-10-11 10:13:14 +00:00
|
|
|
head 'https://github.com/coreos/etcdctl.git'
|
|
|
|
|
|
|
|
depends_on 'go' => :build
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['GOPATH'] = buildpath
|
|
|
|
system "./build"
|
2014-02-09 13:44:33 +00:00
|
|
|
bin.install 'bin/etcdctl'
|
2013-10-11 10:13:14 +00:00
|
|
|
end
|
|
|
|
end
|