Last active
December 11, 2018 13:07
-
-
Save partkyle/5826520 to your computer and use it in GitHub Desktop.
install the silver searcher locally
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
# 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