Last active
December 12, 2016 19:14
-
-
Save djha-skin/9dec227234894d490c7ba8ff7cbc9932 to your computer and use it in GitHub Desktop.
Install screen with 256 color support on mac
This file contains 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 | |
export POSIXLY_CORRECT=1 | |
set -xe | |
git clone git://git.savannah.gnu.org/screen.git | |
cd screen/src | |
sudo mkdir -p /etc/opt/screen | |
./autogen.sh | |
./configure --prefix=/opt/djhaskin987/screen --sysconfdir=/etc/opt/djhaskin987/screen/ --localstatedir=/var/opt/djhaskin987/screen/ --enable-colors256 | |
make | |
sudo make install | |
brew link screen |
This file contains 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 | |
export POSIXLY_CORRECT=1 | |
# Download homebrew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Download compiler, autotools | |
brew install autoconf automake gcc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment