Created
August 31, 2011 10:01
-
-
Save touv/1183216 to your computer and use it in GitHub Desktop.
Installing STOW in HOME Directory
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 | |
# Installing STOW in HOME Directory | |
export STOW_VERSION=1.3.3 | |
mkdir ~/local/stow | |
mkdir -p ~/local/src | |
mkdir ~/local/bin | |
mkdir ~/local/info | |
mkdir ~/local/etc | |
mkdir ~/local/share | |
mkdir ~/local/lib | |
mkdir ~/local/man | |
mkdir ~/local/man/man1 | |
mkdir ~/local/man/man2 | |
mkdir ~/local/man/man3 | |
mkdir ~/local/man/man4 | |
mkdir ~/local/man/man5 | |
mkdir ~/local/man/man6 | |
mkdir ~/local/man/man7 | |
mkdir ~/local/man/man8 | |
mkdir ~/local/X11R6 | |
mkdir ~/local/sbin | |
cd ~/local/src | |
curl http://ftp.gnu.org/gnu/stow/stow-${STOW_VERSION}.tar.gz | tar -xzf - | |
cd stow-${STOW_VERSION} | |
./configure --prefix=~/local/stow/stow-${STOW_VERSION} | |
make | |
make install | |
cd ~/local/stow/ | |
./stow-1.3.3/bin/stow stow-1.3.3 | |
echo "export PATH=\$HOME/local/bin:\${PATH:=}" >> ~/.bash_profile | |
echo "export MANPATH=\$HOME/local/man:\${MANPATH:=}" >> ~/.bash_profile | |
echo "export LD_LIBRARY_PATH=\$HOME/local/lib:\${LD_LIBRARY_PATH:=}" >> ~/.bash_profile | |
source ~/.bash_profile | |
# Perhaps, you need to logout and re log in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment