-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathgateway-go.rb
58 lines (52 loc) · 2.01 KB
/
gateway-go.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
class GatewayGo < Formula
desc "GateWay Client for OpenIoTHub"
homepage "https://github.com/OpenIoTHub"
url "https://github.com/OpenIoTHub/gateway-go.git",
tag: "v0.1.91",
revision: "8df96b8ae676344c14277c61ee8ac8bb206d8ef9"
license "MIT"
bottle do
cellar :any_skip_relocation
sha256 "5263c644db3dec3a9163ffcc71b1f99c75730ba1275a8a9bc2affcb6ef479f59" => :catalina
sha256 "74351f8be7f640eba1a1742938539db1d8be37b9f2e63dae58a55e7d387a7e9b" => :mojave
sha256 "6038aee8b37e90dc5582c000d8fa1845ccab252190c22cbf6af8a472fb55a14d" => :high_sierra
end
depends_on "go" => :build
def install
(etc/"gateway-go").mkpath
system "go", "build", "-mod=vendor", "-ldflags",
"-s -w -X main.version=#{version} -X main.commit=#{stable.specs[:revision]} -X main.builtBy=homebrew",
*std_go_args
etc.install "gateway-go.yaml" => "gateway-go/gateway-go.yaml"
end
plist_options manual: "gateway-go -c #{HOMEBREW_PREFIX}/etc/gateway-go/gateway-go.yaml"
def plist
<<~EOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>KeepAlive</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/gateway-go</string>
<string>-c</string>
<string>#{etc}/gateway-go/gateway-go.yaml</string>
</array>
<key>StandardErrorPath</key>
<string>#{var}/log/gateway-go.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/gateway-go.log</string>
</dict>
</plist>
EOS
end
test do
assert_match version.to_s, shell_output("#{bin}/gateway-go -v 2>&1")
assert_match "config created", shell_output("#{bin}/gateway-go init --config=gateway.yml 2>&1")
assert_predicate testpath/"gateway.yml", :exist?
end
end