diff --git a/README.md b/README.md index a75a3ec..03ffc43 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,16 @@ from the official repositories using [Pacman](https://wiki.archlinux.org/title/P pacman -S repgrep ``` +#### Via MacPorts (macOS) + +`repgrep` can also be installed on macOS using [MacPorts](https://www.macports.org): + +```bash +sudo port install repgrep +``` + +More info [here](https://ports.macports.org/port/repgrep/). + #### From Source (via Cargo) **NOTE**: The minimum Rust version required is `1.65.0`. diff --git a/src/main.rs b/src/main.rs index c19c03c..43610aa 100644 --- a/src/main.rs +++ b/src/main.rs @@ -70,6 +70,16 @@ //! pacman -S repgrep //! ``` //! +//! ### Via MacPorts (macOS) +//! +//! `repgrep` can also be installed on macOS using [MacPorts](https://www.macports.org): +//! +//! ```bash +//! sudo port install repgrep +//! ``` +//! +//! More info [here](https://ports.macports.org/port/repgrep/). +//! //! ### From Source (via Cargo) //! //! **NOTE**: The minimum Rust version required is `1.65.0`.