bingrep 0.8.1 (new formula)
Closes #46712. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
This commit is contained in:
parent
a911769224
commit
e54d2d5e24
1 changed files with 16 additions and 0 deletions
16
Formula/bingrep.rb
Normal file
16
Formula/bingrep.rb
Normal 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
|
Loading…
Reference in a new issue