You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 rivejä
503 B

  1. #!/bin/sh
  2. set -ex
  3. for v in $(grep "^[^#]" ZSH_VERSIONS); do
  4. mkdir zsh-$v
  5. cd zsh-$v
  6. curl -L https://api.github.com/repos/zsh-users/zsh/tarball/zsh-$v | tar xz --strip=1
  7. ./Util/preconfig
  8. ./configure --enable-pcre \
  9. --enable-cap \
  10. --enable-multibyte \
  11. --with-term-lib='ncursesw tinfo' \
  12. --with-tcsetpgrp \
  13. --program-suffix="-$v"
  14. make install.bin
  15. make install.modules
  16. make install.fns
  17. cd ..
  18. rm -rf zsh-$v
  19. done