bingrep 0.8.1 (new formula)

Closes #46712.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
This commit is contained in:
Cheng XU 2019-11-14 00:50:07 +08:00 committed by FX Coudert
parent a911769224
commit e54d2d5e24

16
Formula/bingrep.rb Normal file
View file

@ -0,0 +1,16 @@
class Bingrep < Formula
desc "Greps through binaries from various OSs and architectures"
homepage "https://github.com/m4b/bingrep"
url "https://github.com/m4b/bingrep/archive/v0.8.1.tar.gz"
sha256 "a3d93a3e30f306e5273b95e212007cff5918423d2386233a8625b7f3cf18a0e0"
depends_on "rust" => :build
def install
system "cargo", "install", "--locked", "--root", prefix, "--path", "."
end
test do
system bin/"bingrep", bin/"bingrep"
end
end