forked from Homebrew/homebrew-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc14-cli.rb
33 lines (28 loc) · 1.15 KB
/
c14-cli.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class C14Cli < Formula
desc "Manage your Online C14 archives from the command-line"
homepage "https://github.com/scaleway/c14-cli"
url "https://github.com/scaleway/c14-cli/archive/0.3.tar.gz"
sha256 "d4a2e839394cb5f169bfb3be0102569a310dd7315aba3cdb1dfcd9d9c6e43543"
head "https://github.com/scaleway/c14-cli.git"
bottle do
cellar :any_skip_relocation
rebuild 1
sha256 "9547e5c45d10d48de2ff95aabef2cb6d446fbd6f3b706df90d72adf2a363d96b" => :mojave
sha256 "43107ba495420cf65ab7b3a4f04c1a62de77594ed318e06aba3101213191e694" => :high_sierra
sha256 "6129daf1900d717da72f13909af71af2bf0d29325f798c02bcf4a68b1bd8edb3" => :sierra
end
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
ENV["GOBIN"] = buildpath
(buildpath/"src/github.com/online-net/c14-cli").install buildpath.children
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