You cannot 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 lines
640 B
Bash
26 lines
640 B
Bash
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
mkdir zsh-build
|
|
cd zsh-build
|
|
|
|
curl -L https://api.github.com/repos/zsh-users/zsh/tarball/zsh-$TEST_ZSH_VERSION | 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
|
|
|
|
make install.bin
|
|
make install.modules
|
|
make install.fns
|
|
|
|
cd ..
|
|
|
|
rm -rf zsh-build
|