Created
June 30, 2011 22:10
-
-
Save fitoria/1057400 to your computer and use it in GitHub Desktop.
Install tigger with rvm at your home
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/bash | |
export TIGGER_HOME=$HOME/.tigger/bin | |
echo "bajando y descomprimiendo tigger" | |
curl http://www.tiggerlovesdevs.com/tigger.tar.bz2 | tar -jxv | |
cd tigger | |
echo "reparando makefile" | |
sed "s@/usr/bin@$TIGGER_HOME@g" makefile > makefile.temp | |
cat makefile.temp > makefile | |
rm makefile.temp | |
echo "creando carpeta destino" | |
mkdir -p $TIGGER_HOME | |
echo "compilando" | |
make | |
cd .. | |
echo borrando directorios | |
rm -rf tigger | |
echo agregar export $TIGGER_HOME a tu bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment