73 lines
2.1 KiB
Ruby
73 lines
2.1 KiB
Ruby
require "language/go"
|
|
|
|
class Vault < Formula
|
|
desc "Secures, stores, and tightly controls access to secrets"
|
|
homepage "https://vaultproject.io/"
|
|
url "https://github.com/hashicorp/vault.git",
|
|
:tag => "v0.5.0",
|
|
:revision => "47309289ae8f53ff97be17a4ab21b4a5afa317ef"
|
|
|
|
head "https://github.com/hashicorp/vault.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "c87122e3f36c5afa1ab6419d2facee9bd0578d304e8a3eccc92aef175093fc2c" => :el_capitan
|
|
sha256 "9a945f9e49ed8e0da2a0687c158123045ce8b3bc646ca3516a9a25ae128afdc7" => :yosemite
|
|
sha256 "60d5a7d1ddf2f6a1e75a7db9668988ab6b1edd647df6b2c8e4a10706bd402a65" => :mavericks
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on "godep" => :build
|
|
|
|
# godep's dependencies
|
|
go_resource "github.com/kr/fs" do
|
|
url "https://github.com/kr/fs.git",
|
|
:revision => "2788f0dbd16903de03cb8186e5c7d97b69ad387b"
|
|
end
|
|
|
|
go_resource "golang.org/x/tools" do
|
|
url "https://go.googlesource.com/tools.git",
|
|
:revision => "fe74a4186116b8d7dd38a723993e0d84f8834b34"
|
|
end
|
|
|
|
go_resource "github.com/mitchellh/gox" do
|
|
url "https://github.com/mitchellh/gox.git",
|
|
:revision => "39862d88e853ecc97f45e91c1cdcb1b312c51eaa"
|
|
end
|
|
|
|
# gox dependency
|
|
go_resource "github.com/mitchellh/iochan" do
|
|
url "https://github.com/mitchellh/iochan.git",
|
|
:revision => "87b45ffd0e9581375c491fef3d32130bb15c5bd7"
|
|
end
|
|
|
|
def install
|
|
contents = Dir["{*,.git,.gitignore,.travis.yml}"]
|
|
gopath = buildpath/"gopath"
|
|
(gopath/"src/github.com/hashicorp/vault").install contents
|
|
|
|
ENV["GOPATH"] = gopath
|
|
ENV.prepend_create_path "PATH", gopath/"bin"
|
|
|
|
Language::Go.stage_deps resources, gopath/"src"
|
|
|
|
cd gopath/"src/github.com/mitchellh/gox" do
|
|
system "go", "install"
|
|
end
|
|
|
|
cd gopath/"src/github.com/hashicorp/vault" do
|
|
system "make", "dev"
|
|
bin.install "bin/vault"
|
|
end
|
|
end
|
|
|
|
test do
|
|
pid = fork do
|
|
exec "#{bin}/vault", "server", "-dev"
|
|
end
|
|
sleep 1
|
|
ENV.append "VAULT_ADDR", "http://127.0.0.1:8200"
|
|
system "#{bin}/vault", "status"
|
|
Process.kill("TERM", pid)
|
|
end
|
|
end
|