mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2024-12-12 19:18:24 +02:00
25 lines
850 B
Ruby
25 lines
850 B
Ruby
class RipgrepBin < Formula
|
|
version '0.9.0'
|
|
desc "Recursively search directories for a regex pattern."
|
|
homepage "https://github.com/BurntSushi/ripgrep"
|
|
|
|
if OS.mac?
|
|
url "https://github.com/BurntSushi/ripgrep/releases/download/#{version}/ripgrep-#{version}-x86_64-apple-darwin.tar.gz"
|
|
sha256 "36003ea8b62ad6274dc14140039f448cdf5026827d53cf24dad2d84005557a8c"
|
|
elsif OS.linux?
|
|
url "https://github.com/BurntSushi/ripgrep/releases/download/#{version}/ripgrep-#{version}-x86_64-unknown-linux-musl.tar.gz"
|
|
sha256 "2eb4443e58f95051ff76ea036ed1faf940d5a04af4e7ff5a7dbd74576b907e99"
|
|
end
|
|
|
|
conflicts_with "ripgrep"
|
|
|
|
def install
|
|
bin.install "rg"
|
|
man1.install "doc/rg.1"
|
|
|
|
bash_completion.install "complete/rg.bash"
|
|
fish_completion.install "complete/rg.fish"
|
|
zsh_completion.install "complete/_rg"
|
|
end
|
|
end
|