-
-
Save dangh/6646bb35004a9a517c9d00b6d5c2644a to your computer and use it in GitHub Desktop.
Build Zsh from sources on Debian Wheezy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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