homebrew-core/Formula/c14-cli.rb
2017-05-02 11:58:57 +02:00

31 lines
1.1 KiB
Ruby

class C14Cli < Formula
desc "Manage your Online C14 archives from the command-line"
homepage "https://github.com/online-net/c14-cli"
url "https://github.com/online-net/c14-cli/archive/0.1.tar.gz"
sha256 "cff3597273daff87e8d6e85cfef2b4d83400f0a0a905f39a4a67560b4966513c"
head "https://github.com/online-net/c14-cli.git"
bottle do
cellar :any_skip_relocation
sha256 "5f933f312db20563688f11a278981c87e6771f16f7c3f3bccb29301b12e46bb6" => :sierra
sha256 "94aa82618c853ee2f011e265e2131bce73e3cda2fcc2abacb4c64e2ebb325996" => :el_capitan
sha256 "010ccda715de1b29406ee14d7439c33b17fc5741aa5c96439d01f2ce30f2431a" => :yosemite
end
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
ENV["GOBIN"] = buildpath
(buildpath/"src/github.com/online-net/c14-cli").install Dir["*"]
system "go", "build", "-ldflags",
"-X github.com/online-net/c14-cli/pkg/version.GITCOMMIT=homebrew",
"-o", bin/"c14", "github.com/online-net/c14-cli/cmd/c14/"
end
test do
output = shell_output(bin/"c14 help")
assert_match "Interact with C14 from the command line.", output
end
end