71 lines
2.3 KiB
Ruby
71 lines
2.3 KiB
Ruby
require "language/go"
|
|
|
|
class Vaulted < Formula
|
|
desc "Allows the secure storage and execution of environments"
|
|
homepage "https://github.com/miquella/vaulted"
|
|
url "https://github.com/miquella/vaulted/archive/v2.2.0.tar.gz"
|
|
sha256 "2b92f4973d4273dfb508f7e11469d072e91d0762864cf60ee720998024c0feb4"
|
|
|
|
head "https://github.com/miquella/vaulted.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "f26213f97d628b3fd09da3499599ce809836d35a8d9066c4ca0956337e8004e2" => :sierra
|
|
sha256 "d6cb9dee20339fe668adcf97447a6451f59e970ccef032cb97665582fa064ce4" => :el_capitan
|
|
sha256 "643939ca33c34a15ac264bf4cb66aaf1b14fb175528b40ab2fbaa206baa62624" => :yosemite
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
go_resource "github.com/aws/aws-sdk-go" do
|
|
url "https://github.com/aws/aws-sdk-go.git",
|
|
:revision => "baba9e786eae5ba978f2007f8e718557b29157c8"
|
|
end
|
|
|
|
go_resource "github.com/chzyer/readline" do
|
|
url "https://github.com/chzyer/readline.git",
|
|
:revision => "41eea22f717c616615e1e59aa06cf831f9901f35"
|
|
end
|
|
|
|
go_resource "github.com/fatih/color" do
|
|
url "https://github.com/fatih/color.git",
|
|
:revision => "9131ab34cf20d2f6d83fdc67168a5430d1c7dc23"
|
|
end
|
|
|
|
go_resource "github.com/miquella/ask" do
|
|
url "https://github.com/miquella/ask.git",
|
|
:revision => "486a722fa4cdb033d35a501d54116b645e139ef3"
|
|
end
|
|
|
|
go_resource "github.com/miquella/xdg" do
|
|
url "https://github.com/miquella/xdg.git",
|
|
:revision => "1ee6df0d556245ee71d26d54f9dbfea1f84d136a"
|
|
end
|
|
|
|
go_resource "github.com/spf13/pflag" do
|
|
url "https://github.com/spf13/pflag.git",
|
|
:revision => "2300d0f8576fe575f71aaa5b9bbe4e1b0dc2eb51"
|
|
end
|
|
|
|
go_resource "golang.org/x/crypto" do
|
|
url "https://go.googlesource.com/crypto.git",
|
|
:revision => "efac7f277b17c19894091e358c6130cb6bd51117"
|
|
end
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
mkdir_p buildpath/"src/github.com/miquella"
|
|
ln_s buildpath, "src/github.com/miquella/vaulted"
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
|
|
system "go", "build", "-o", bin/"vaulted", "github.com/miquella/vaulted"
|
|
man1.install Dir["doc/man/vaulted*.1"]
|
|
end
|
|
|
|
test do
|
|
(testpath/".local/share/vaulted").mkpath
|
|
touch(".local/share/vaulted/test_vault")
|
|
output = IO.popen(["#{bin}/vaulted", "ls"], &:read)
|
|
output == "test_vault\n"
|
|
end
|
|
end
|