Skip to content

Commit

Permalink
Add Paranoia formula
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesLaverack committed Oct 24, 2022
1 parent 90c2f4c commit 7c57232
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Formula/paranoia.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
class Paranoia < Formula
desc "Inspect certificate authorites in contianer images"
homepage "https://github.com/jetstack/paranoia"
version "0.2.0"
url "https://github.com/jetstack/paranoia/archive/refs/tags/v0.2.0.tar.gz"
sha256 "c627437fc2ca74fb2e162501b8d44fff7de60f16788de7d19355cd621b8e6203"
license "Apache-2.0"
head "https://github.com/jetstack/paranoia", branch: "main"

depends_on "go" => :build

def install
system "go", "build", *std_go_args(ldflags: "-s -w")
end

test do
system "false"
end
end

0 comments on commit 7c57232

Please sign in to comment.