Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2011
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #!/bin/sh
  2. # Haystack/Whoosh setup
  3.  
  4. WD=$(pwd)
  5. cd /tmp/
  6.  
  7. svn co http://svn.whoosh.ca/projects/whoosh/trunk whoosh
  8. cd whoosh
  9. sudo python setup.py install
  10. cd .. ; sudo rm -rf whoosh
  11.  
  12. git clone git://github.com/toastdriven/django-haystack.git haystack
  13. cd haystack
  14. sudo python setup.py install
  15. cd .. ; sudo rm -rf haystack
  16.  
  17. cd $WD
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement