Skip to content

Instantly share code, notes, and snippets.

@dangh
Forked from nicoulaj/build-zsh.sh
Last active October 18, 2018 06:19
Show Gist options
  • Save dangh/6646bb35004a9a517c9d00b6d5c2644a to your computer and use it in GitHub Desktop.
Save dangh/6646bb35004a9a517c9d00b6d5c2644a to your computer and use it in GitHub Desktop.
Build Zsh from sources on Debian Wheezy
#!/bin/sh
# Build Zsh from sources on Debian Wheezy.
# From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file.
# Some packages may be missing
sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo
git clone git://git.code.sf.net/p/zsh/code zsh
cd zsh
./Util/preconfig
./configure
make
make check
sudo make install
sudo make install.info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment