From 4a01b598fbc41aed68f1bd72200ea3b8425703d4 Mon Sep 17 00:00:00 2001 From: Munchotaur Date: Mon, 13 May 2019 13:04:06 +0100 Subject: [PATCH 1/3] updated README.md for FreeBSD and OpenBSD --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 2b999d2..b43d424 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,20 @@ See the [Getting Started](https://github.com/jamestomasino/burrow/wiki/Getting-S ### Install on BSD systems +#### FreeBSD + - Installing bash-completion via either `pkg install bash-completion` or via the `shells/bash-completion` port. - Installing the GNU version of make via either `pkg install gmake` or the `port devel/gmake`. - Rather than running `sudo make install`, run `sudo gmake install`. +#### OpenBSD + +- Install the GNU version of make via either `pkg_add gmake` using packages or the port `devel/gmake`. +- There is no bash-completion package or port in OpenBSD. However the source code for bash-completion can be found at (https://github.com/scop/bash-completion). +- Burrow appears to install and run without the presence of bash-completion. Exercise caution. +- As root (or via `doas`), run `gmake install`. + + ### Uninstall `sudo make uninstall` # or gmake uninstall on BSD From d3289ebc94e62b10191985b5fcd20ad002aa96ed Mon Sep 17 00:00:00 2001 From: Munchotaur Date: Mon, 13 May 2019 13:06:41 +0100 Subject: [PATCH 2/3] updated README.md BSD instructions --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b43d424..b9f7cd0 100644 --- a/README.md +++ b/README.md @@ -19,12 +19,12 @@ See the [Getting Started](https://github.com/jamestomasino/burrow/wiki/Getting-S - Installing bash-completion via either `pkg install bash-completion` or via the `shells/bash-completion` port. - Installing the GNU version of make via either `pkg install gmake` or the `port devel/gmake`. -- Rather than running `sudo make install`, run `sudo gmake install`. +- Rather than using `sudo make install`, run `sudo gmake install`. #### OpenBSD -- Install the GNU version of make via either `pkg_add gmake` using packages or the port `devel/gmake`. -- There is no bash-completion package or port in OpenBSD. However the source code for bash-completion can be found at (https://github.com/scop/bash-completion). +- Install the GNU version of make via either `pkg_add gmake` or the port `devel/gmake`. +- There is no bash-completion package or port in OpenBSD. However the source code can be found at (https://github.com/scop/bash-completion). - Burrow appears to install and run without the presence of bash-completion. Exercise caution. - As root (or via `doas`), run `gmake install`. From b9a2650819be7a77e3db71ed1b9c84ba961d8af2 Mon Sep 17 00:00:00 2001 From: David Harrison Date: Mon, 13 May 2019 13:11:19 +0100 Subject: [PATCH 3/3] Tweak OpenBSD instructions in README.md changed formatting around link. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b9f7cd0..ae38273 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ See the [Getting Started](https://github.com/jamestomasino/burrow/wiki/Getting-S #### OpenBSD - Install the GNU version of make via either `pkg_add gmake` or the port `devel/gmake`. -- There is no bash-completion package or port in OpenBSD. However the source code can be found at (https://github.com/scop/bash-completion). +- There is no bash-completion package or port in OpenBSD. However the source code can be found at https://github.com/scop/bash-completion - Burrow appears to install and run without the presence of bash-completion. Exercise caution. - As root (or via `doas`), run `gmake install`.