Skip to content

Instantly share code, notes, and snippets.

@congqiao
Last active August 29, 2015 14:07
Show Gist options
  • Save congqiao/cd37e043aaff2d5f121b to your computer and use it in GitHub Desktop.
Save congqiao/cd37e043aaff2d5f121b to your computer and use it in GitHub Desktop.
Build scripts
#!/bin/bash
VERSION="2.1.2"
wget -O - https://www.kernel.org/pub/software/scm/git/git-${VERSION}.tar.gz | tar -xz
cd git-${VERSION}/
./configure --prefix=$HOME/.local
make install
#!/bin/bash
VERSION="2.7.8"
wget -O - https://www.python.org/ftp/python/${VERSION}/Python-${VERSION}.tgz | tar -xz
cd Python-${VERSION}/
./configure --prefix=$HOME/.local
make install
#!/bin/bash
VERSION="3.4.2"
wget -O - https://www.python.org/ftp/python/${VERSION}/Python-${VERSION}.tgz | tar -xz
cd Python-${VERSION}/
./configure --prefix=$HOME/.local
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment