comparison .zfun/zsh-autosuggestions/install_test_zsh.sh @ 467:e1ce8897030d

zsh: import df6f6f9ff41 of zsh-autosuggestions
author Augie Fackler <raf@durin42.com>
date Mon, 03 Dec 2018 22:37:29 -0500
parents
children
comparison
equal deleted inserted replaced
466:f248cf012d9a 467:e1ce8897030d
1 #!/bin/sh
2
3 set -ex
4
5 for v in $(grep "^[^#]" ZSH_VERSIONS); do
6 mkdir zsh-$v
7 cd zsh-$v
8
9 curl -L https://api.github.com/repos/zsh-users/zsh/tarball/zsh-$v | tar xz --strip=1
10
11 ./Util/preconfig
12 ./configure --enable-pcre \
13 --enable-cap \
14 --enable-multibyte \
15 --with-term-lib='ncursesw tinfo' \
16 --without-tcsetpgrp \
17 --program-suffix="-$v"
18
19 make install.bin
20 make install.modules
21 make install.fns
22
23 cd ..
24
25 rm -rf zsh-$v
26 done