This file contains 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
#!/bin/bash | |
# This is the process for installing Thrift, Scribed and the php extension on Ubuntu | |
# [email protected] | |
set -e | |
# install dependancies | |
aptitude install libboost1.40-dev libboost-filesystem1.40-dev libevent-dev build-essential flex bison libtool libevent-dev php5-dev pkg-config | |
# install thrift from source | |
cd /usr/local/src |