summaryrefslogtreecommitdiffstats
path: root/website/docs/install.md
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-11-13 14:24:14 +0100
committerCanop <cano.petrole@gmail.com>2020-11-13 14:24:14 +0100
commit8c85bb52db147ded1c2219e42980f992834ae518 (patch)
tree5f36b0609322b5ecabcd5bb7a8d9b3ba5574401e /website/docs/install.md
parent2fce268388ea71d8b4ed98facde6ce6c6b1d6a09 (diff)
mention NetBSD package in install doc
Fix #298
Diffstat (limited to 'website/docs/install.md')
-rw-r--r--website/docs/install.md19
1 files changed, 11 insertions, 8 deletions
diff --git a/website/docs/install.md b/website/docs/install.md
index bd3e126..b07a269 100644
--- a/website/docs/install.md
+++ b/website/docs/install.md
@@ -29,7 +29,7 @@ When you download executable files, you'll have to ensure the shell can find the
# From crates.io
-You'll need to have the [Rust development environment](https://www.rust-lang.org/tools/install) installed.
+You'll need to have the [Rust development environment](https://www.rust-lang.org/tools/install) installed and up to date.
Once it's installed, use cargo to install broot:
@@ -41,24 +41,27 @@ You'll need to have the [Rust development environment](https://www.rust-lang.org
Fetch the [Canop/broot](https://github.com/Canop/broot) repository, move to the broot directory, then run
- cargo install --path .
+```bash
+cargo install --path .
+```
If you want a custom compilation, have a look at the [optional features documentation](https://github.com/Canop/broot/features.md).
-# Homebrew
+# Third party repositories
-If you're using [homebrew](https://brew.sh/), you can use the `brew install` command:
+*note: those packages are maintained by third parties and may be less up to date.*
- brew install broot
+## Homebrew
-*note: the brew formula is maintained by a third party and may be less up to date.*
+ brew install broot
-# APT / Deb
+## APT / Deb
Ubuntu and Debian users may use this apt repository: [https://packages.azlux.fr/](https://packages.azlux.fr/)
-*note: this repository is also maintained by a third party.*
+## NetBSD
+ pkgin install broot
-----------------------------------