嵌ったのでメモ。
環境
$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04 LTS"
インストール
$ git clone https://github.com/ggreer/the_silver_searcher
$ cd the_silver_searcher && ./build.sh
エラー
./build.sh: line 16: aclocal: command not found
対応
$ sudo apt-get install automake
インストール再開
$ ./build.sh
エラー
No package 'libpcre' found
対応
$ sudo apt-get install libpcre3-dev
インストール再開
$ ./build.sh
エラー
No package 'liblzma' found
対応
$ sudo apt-get install liblzma-dev
インストール再開
$ ./build.sh
$ sudo make install