└── Formula └── noir.rb /Formula/noir.rb: -------------------------------------------------------------------------------- 1 | # typed: true 2 | # frozen_string_literal: true 3 | 4 | # This file was generated by Homebrew Releaser. DO NOT EDIT. 5 | class Noir < Formula 6 | desc "♠️ noir is an attack surface detector form source code" 7 | homepage "https://github.com/hahwul/noir" 8 | url "https://github.com/hahwul/noir/archive/v0.10.0.tar.gz" 9 | sha256 "f6c258fe91fc76df4ea9a4ea3c9eb132ebacc7a24a2cfeb7f2932552b94a670b" 10 | license "MIT" 11 | 12 | depends_on "crystal" 13 | 14 | def install 15 | system "shards install" 16 | system "shards build --release --no-debug --production" 17 | bin.install "bin/noir" 18 | end 19 | 20 | test do 21 | system "{bin}/noir", "-v" 22 | end 23 | end 24 | --------------------------------------------------------------------------------