2013-09-16 11:06:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Etcd < Formula
|
|
|
|
homepage 'https://github.com/coreos/etcd'
|
2014-02-08 12:48:03 +00:00
|
|
|
url 'https://github.com/coreos/etcd/archive/v0.3.0.tar.gz'
|
|
|
|
sha1 '0f191070268f7c87ca044ad23179995b9290e3c0'
|
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"
|
2014-02-08 12:48:03 +00:00
|
|
|
bin.install 'bin/etcd'
|
2013-09-16 11:06:27 +00:00
|
|
|
end
|
|
|
|
end
|