mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2025-04-17 11:35:31 +08:00

This script, last modified 2009-11-20, has failed to recognize the operating system you are using. It is advised that you download the most up to date version of the config scripts from http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD and http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
29 lines
734 B
Bash
Executable File
29 lines
734 B
Bash
Executable File
#!/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
|
|
curl -o config.guess 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=refs/heads/master'
|
|
curl -o config.sub 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD'
|
|
|
|
./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
|