1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-06-04 05:57:39 +02:00
ripgrep/pkg/brew/ripgrep-bin.rb

15 lines
447 B
Ruby
Raw Normal View History

class RipgrepBin < Formula
2016-10-13 21:00:18 -04:00
version '0.2.3'
2016-09-21 17:28:19 -04:00
desc "Search tool like grep and The Silver Searcher."
homepage "https://github.com/BurntSushi/ripgrep"
2016-09-26 12:53:19 -05:00
url "https://github.com/BurntSushi/ripgrep/releases/download/#{version}/ripgrep-#{version}-x86_64-apple-darwin.tar.gz"
2016-10-13 21:00:18 -04:00
sha256 "7407555dfe040a2631a7efdd1eea62cf1d1c50e5a6ecf8ee82e0bef9d5f37298"
2016-09-21 17:28:19 -04:00
conflicts_with "ripgrep"
2016-09-21 17:28:19 -04:00
def install
bin.install "rg"
man1.install "rg.1"
2016-09-21 17:28:19 -04:00
end
end