summary refs log tree commit diff
path: root/install.sh
blob: 308091f6c91ed405f28b036d1306216bb8426803 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/sh
set -eu

pkgAny='curl git htop mksh sl the_silver_searcher tree'
pkgDarwin="${pkgAny} gnupg2"
pkgFreeBSD="${pkgAny} ddate gnupg neovim"
pkgNetBSD="${pkgAny} gnupg2 vim"
pkgLinux="${pkgAny} bc ctags gdb gnupg neovim openssh"

pkgsrcTag='20171103'
neovimTag='v0.3.4'

Darwin() {
	xcode-select --install || true
	if [ ! -d /opt/pkg ]; then
		tar="bootstrap-trunk-x86_64-${pkgsrcTag}.tar.gz"
		url="https://pkgsrc.joyent.com/packages/Darwin/bootstrap/${tar}"
		curl -O "${url}"
		sudo tar -pxz -f "${tar}" -C /
		rm "${tar}"
	fi
	sudo pkgin update
	sudo pkgin install ${pkgDarwin}
	sudo ln -fs /opt/pkg/bin/gpg2 /usr/local/bin/gpg
	if [ ! -f /usr/local/bin/nvim ]; then
		tar="nvim-macos.tar.gz"
		base="https://github.com/neovim/neovim/releases/download"
		url="${base}/${neovimTag}/${tar}"
		curl -L -O "${url}"
		sudo tar -x -f "${tar}" -C /usr/local --strip-components 1
		rm "${tar}"
	fi
}

FreeBSD() {
	pkg install ${pkgFreeBSD}
}

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}
	ln -fs /usr/pkg/bin/gpg2 /usr/local/bin/gpg
}

Linux() {
	pacman -Sy --needed ${pkgLinux}
}

$(uname)
ue is a space-separated list of zero or more of the values "tar", "tar.gz", "tar.bz2", "tar.xz" and "zip". Supporting the undocumented delimiters makes the code unnecessarily complex. Remove them. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Replace most uses of strncmp() with prefixcmp()Lukas Fleischer This is a preparation for replacing all prefix checks with either strip_prefix() or starts_with() when Git 1.8.6 is released. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-09README: Fix dependenciesLukas Fleischer * Remove the dependency on Git (which can be obtained automatically when building, using either the Git submodule or `make get-git`). * Use proper upstream names of dependencies. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08README: Spelling and formatting fixesLukas Fleischer * Several small spelling and capitalization fixes. * Use consistent and better-looking formatting that is compatible with AsciiDoc (and partly compatible with RST). Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08Fix UTF-8 with syntax-highlighting.pyPřemysl Janouch Previously the script tried to encode output from Pygments with the ASCII codec, which failed. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Add a suggestion to the manpagePřemysl Janouch So that people wishing to use "enable-http-clone" don't have to find out the correct settings on their own. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix the example configurationPřemysl Janouch "enable-git-clone" doesn't exist, replaced with "enable-http-clone". Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix about-formatting.shPřemysl Janouch dash failed to parse the script. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix some spelling errorsPřemysl Janouch Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08filters: highlight.sh: add css comments for highlight 2.6 and 3.8Ferry Huberts