Skip to content

Instantly share code, notes, and snippets.

@partkyle
Last active December 11, 2018 13:07
Show Gist options
  • Save partkyle/5826520 to your computer and use it in GitHub Desktop.
Save partkyle/5826520 to your computer and use it in GitHub Desktop.
install the silver searcher locally
# requires apt-get install -y automake pkg-config libpcre3-dev zlib1g-dev liblzma-dev
set -e
VERSION=0.16
export LOCAL=$HOME/local
mkdir -p $HOME/build
cd $HOME/build
git clone [email protected]:ggreer/the_silver_searcher.git
cd the_silver_searcher
git co $VERSION
./build.sh --prefix=$LOCAL
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment