Skip to content

Commit 7c57232

Browse files
committed
Add Paranoia formula
1 parent 90c2f4c commit 7c57232

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Formula/paranoia.rb

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
class Paranoia < Formula
2+
desc "Inspect certificate authorites in contianer images"
3+
homepage "https://github.com/jetstack/paranoia"
4+
version "0.2.0"
5+
url "https://github.com/jetstack/paranoia/archive/refs/tags/v0.2.0.tar.gz"
6+
sha256 "c627437fc2ca74fb2e162501b8d44fff7de60f16788de7d19355cd621b8e6203"
7+
license "Apache-2.0"
8+
head "https://github.com/jetstack/paranoia", branch: "main"
9+
10+
depends_on "go" => :build
11+
12+
def install
13+
system "go", "build", *std_go_args(ldflags: "-s -w")
14+
end
15+
16+
test do
17+
system "false"
18+
end
19+
end

0 commit comments

Comments
 (0)