2013-09-16 11:06:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Etcd < Formula
|
|
|
|
homepage 'https://github.com/coreos/etcd'
|
2013-12-28 00:49:13 +00:00
|
|
|
url 'https://github.com/coreos/etcd/archive/v0.2.0.tar.gz'
|
|
|
|
sha1 'c18bfe533a5c180012188e4039b740b9564894ce'
|
2013-09-16 11:06:27 +00:00
|
|
|
head 'https://github.com/coreos/etcd.git'
|
|
|
|
|
|
|
|
depends_on 'go' => :build
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['GOPATH'] = buildpath
|
|
|
|
system "./build"
|
|
|
|
bin.install 'etcd'
|
|
|
|
end
|
|
|
|
end
|