Skip to content

Instantly share code, notes, and snippets.

@nolanlawson
Last active December 15, 2015 22:49
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 nolanlawson/5335266 to your computer and use it in GitHub Desktop.
Save nolanlawson/5335266 to your computer and use it in GitHub Desktop.
Install HON perl dependencies, easily allowing placement of HON-style documents into a CouchDB database.
#!/bin/bash
for package in HON-Utils HON-Http-MediaWiki HON-Http-ImageExtractor HON-WWW-Robot HON-Http-Mirror HON-EUHP HON-Http-SectionClassifier HON-Http-ContentExtractor HON-Http-Store ; do
svn co "http://svn.honservices.org/SearchEngine/trunk/$package"
cd $package
perl Build.PL
./Build
./Build installdeps
./Build install
cd ..
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment