homebrew-core/Formula/etcd.rb
Jonathon Klobucar d286e8d60f Remove fails with clang due to go 1.2.
Closes Homebrew/homebrew#24853.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-12-01 20:09:07 -06:00

16 lines
367 B
Ruby

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