1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-03-03 14:32:22 +02:00

Merge pull request #143 from moshen/change-brew-formula-name

Fix brew formula name to not conflict with core
This commit is contained in:
Andrew Gallant 2016-10-04 06:49:16 -04:00 committed by GitHub
commit 35045d6105
2 changed files with 4 additions and 2 deletions

View File

@ -101,7 +101,7 @@ If you're a **Homebrew** user, then you can install it with a custom tap:
```
$ brew tap burntsushi/ripgrep https://github.com/BurntSushi/ripgrep.git
$ brew install burntsushi/ripgrep/ripgrep
$ brew install burntsushi/ripgrep/ripgrep-bin
```
If you're an **Arch Linux** user, then you can install `ripgrep` from the official repos:

View File

@ -1,10 +1,12 @@
class Ripgrep < Formula
class RipgrepBin < Formula
version '0.2.1'
desc "Search tool like grep and The Silver Searcher."
homepage "https://github.com/BurntSushi/ripgrep"
url "https://github.com/BurntSushi/ripgrep/releases/download/#{version}/ripgrep-#{version}-x86_64-apple-darwin.tar.gz"
sha256 "f8b208239b988708da2e58f848a75bf70ad144e201b3ed99cd323cc5a699625f"
conflicts_with "ripgrep"
def install
bin.install "rg"
man1.install "rg.1"