summaryrefslogtreecommitdiff
path: root/home-config/zsh/zsh-autosuggestions/install_test_zsh.sh
blob: 40dc4c56cd59963a0308eef39b910aa44f836bef (plain)
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
#!/bin/sh

set -ex

for v in $(grep "^[^#]" ZSH_VERSIONS); do
  mkdir zsh-$v
  cd zsh-$v

  curl -L https://api.github.com/repos/zsh-users/zsh/tarball/zsh-$v | tar xz --strip=1

  ./Util/preconfig
  ./configure --enable-pcre \
              --enable-cap \
              --enable-multibyte \
              --with-term-lib='ncursesw tinfo' \
              --with-tcsetpgrp \
              --program-suffix="-$v"

  make install.bin
  make install.modules
  make install.fns

  cd ..

  rm -rf zsh-$v
done