blob: 2a17dd73152fb16150165ea003b8cdbae06e4d5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Etcd < Formula
homepage 'https://github.com/coreos/etcd'
url 'https://github.com/coreos/etcd/archive/v0.1.2.tar.gz'
sha1 'f6a644ec0ff30681b816bff192a881ed65d0c9e5'
head 'https://github.com/coreos/etcd.git'
depends_on 'go' => :build
def install
ENV['GOPATH'] = buildpath
system "./build"
bin.install 'etcd'
end
end
|