summary refs log tree commit diff
path: root/install.sh
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-09-11 20:50:58 -0400
committerJune McEnroe <june@causal.agency>2020-09-11 20:52:42 -0400
commit00fa2b2cbfa6aa5c9733921cb2d27f9c9bce5932 (patch)
treea4193796a13da76679bd875a77a2f2e9f8b23001 /install.sh
parentUse MacPorts rather than pkgsrc (diff)
downloadsrc-00fa2b2cbfa6aa5c9733921cb2d27f9c9bce5932.tar.gz
src-00fa2b2cbfa6aa5c9733921cb2d27f9c9bce5932.zip
Remove NetBSD from install script
I never use it.
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/install.sh b/install.sh
index 46ebd926..33b1450e 100644
--- a/install.sh
+++ b/install.sh
@@ -5,7 +5,6 @@ pkgAny='curl htop sl the_silver_searcher tree'
 pkgDarwin="${pkgAny} git neovim pkg-config"
 pkgFreeBSD="${pkgAny} ddate neovim"
 pkgLinux="${pkgAny} bc ctags gdb neovim openssh"
-pkgNetBSD="${pkgAny} vim"
 pkgOpenBSD="${pkgAny} neovim"
 
 Darwin() {
@@ -31,17 +30,6 @@ Linux() {
 	pacman -Sy --needed $pkgLinux
 }
 
-NetBSD() {
-	if [ ! -f /usr/pkg/bin/pkgin ]; then
-		base="ftp://ftp.NetBSD.org/pub/pkgsrc/packages"
-		export PKG_PATH="${base}/$(uname -s)/$(uname -p)/$(uname -r)/All"
-		pkg_add pkgin
-		echo "$PKG_PATH" > /usr/pkg/etc/pkgin/repositories.conf
-	fi
-	pkgin update
-	pkgin install $pkgNetBSD
-}
-
 OpenBSD() {
 	pkg_add $pkgOpenBSD
 }