Created
September 8, 2009 20:51
-
-
Save bitprophet/183213 to your computer and use it in GitHub Desktop.
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
def sphinx(): | |
with cd('/tmp'): | |
tgz = 'sphinx-0.9.8.1.tar.gz' | |
run('wget http://www.sphinxsearch.com/downloads/%s' % tgz) | |
run('tar xzf %s' % tgz) | |
with cd(tgz.replace('.tar.gz', '')): | |
run('./configure') | |
run('make') | |
sudo('make install') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment