Skip to content

Instantly share code, notes, and snippets.

@bitprophet
Created September 8, 2009 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitprophet/183213 to your computer and use it in GitHub Desktop.
Save bitprophet/183213 to your computer and use it in GitHub Desktop.
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