Created
August 13, 2013 20:25
-
-
Save jasonmorganson/6225315 to your computer and use it in GitHub Desktop.
Misc installables
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
#!/usr/bin/env sh | |
# | |
# | |
# Run with the following command: | |
# | |
# | |
# wget -q -O - https://gist.github.com/jasonmorganson/4733446/raw/user.sh | sh | |
# wget -q -O - http://user.morganson.net | sh | |
USER=jason | |
USERHOME=/home/$USER | |
# Install Bugs Everywhere | |
echo -n "Install Bugs Everywhere... " | |
sudo -u $USER mkdir -p $USERHOME/.local | |
sudo -u $USER git clone git://gitorious.org/be/be.git $USERHOME/.local/be >/dev/null 2>&1 | |
cd $USERHOME/.local/be | |
sudo -u $USER make >/dev/null 2>&1 | |
sudo -u $USER make DOC= install >/dev/null 2>&1 | |
echo "done." | |
# Install TaskWarrior | |
echo -n "Install TaskWarrior... " | |
sudo -u $USER mkdir -p $USERHOME/.local | |
sudo -u $USER git clone git://tasktools.org/task.git $USERHOME/.local/task >/dev/null 2>&1 | |
cd $USERHOME/.local/task | |
sudo -u $USER cmake -DCMAKE_INSTALL_PREFIX=$USERHOME/.local >/dev/null 2>&1 | |
sudo -u $USER make install >/dev/null 2>&1 | |
echo "done." | |
# Install Google Command Line tools (googlecl) | |
echo -n "Install Google command line tools.. " | |
pip install --user googlecl >/dev/null 2>&1 | |
echo "done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment