summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--install.sh12
1 files changed, 8 insertions, 4 deletions
diff --git a/install.sh b/install.sh
index c58ef9e3..55e071fa 100644
--- a/install.sh
+++ b/install.sh
@@ -4,12 +4,12 @@ set -eu
 pkgAny='curl htop sl the_silver_searcher tree'
 pkgDarwin="${pkgAny}"
 pkgFreeBSD="${pkgAny} ddate neovim"
-pkgNetBSD="${pkgAny} vim"
 pkgLinux="${pkgAny} bc ctags gdb neovim openssh"
+pkgNetBSD="${pkgAny} vim"
+pkgOpenBSD="${pkgAny} neovim"
 
 pkgsrcTag='20171103'
 neovimTag='v0.4.3'
-
 Darwin() {
 	xcode-select --install || true
 	if [ ! -d /opt/pkg ]; then
@@ -36,6 +36,10 @@ FreeBSD() {
 	pkg install $pkgFreeBSD
 }
 
+Linux() {
+	pacman -Sy --needed $pkgLinux
+}
+
 NetBSD() {
 	if [ ! -f /usr/pkg/bin/pkgin ]; then
 		base="ftp://ftp.NetBSD.org/pub/pkgsrc/packages"
@@ -47,8 +51,8 @@ NetBSD() {
 	pkgin install $pkgNetBSD
 }
 
-Linux() {
-	pacman -Sy --needed $pkgLinux
+OpenBSD() {
+	pkg_add $pkgOpenBSD
 }
 
 $(uname)
e/commit/client.c?h=2.5&id=2f39eabb2ddc945217a92247724e65f4eb485656&follow=1'>Define macro for bit flag enumsJune McEnroe 2019-11-08Check that password is hashedJune McEnroe 2019-11-08Avoid calling getopt_long again after it returns -1June McEnroe 2019-11-08Only change AWAY status for registered clientsJune McEnroe 2019-11-07Just write the example normallyJune McEnroe 2019-11-07Include path in readlinkat errorJune McEnroe 2019-11-07Call clientConsume before clientRecvJune McEnroe 2019-11-06Use -l:filename in Linux.mkJune McEnroe 2019-11-06Fix compat.h for #defined strlcpyJune McEnroe 2019-11-06Allow unsetting LIBRESSL_PREFIXJune McEnroe 2019-11-06Document calico service configurationJune McEnroe 2019-11-06Document SASL EXTERNAL configuration in more detailJune McEnroe 2019-11-06Document pounce service configurationJune McEnroe 2019-11-06Mention Darwin and GNU/Linux in READMEJune McEnroe 2019-11-06Assume LibreSSL from brew on DarwinJune McEnroe 2019-11-06Remove -DNO_EXPLICIT_BZERO from Darwin.mkJune McEnroe 2019-11-06Don't install rc scripts or dirs on LinuxJune McEnroe