[sword-svn] r3031 - trunk/doc

scribe at crosswire.org scribe at crosswire.org
Thu Feb 27 19:55:49 MST 2014


Author: scribe
Date: 2014-02-27 19:55:49 -0700 (Thu, 27 Feb 2014)
New Revision: 3031

Added:
   trunk/doc/QUICKSTART.ubuntu
Log:
added a quickstart to help get developers up and running
from svn on a fresh Ubuntu installation


Added: trunk/doc/QUICKSTART.ubuntu
===================================================================
--- trunk/doc/QUICKSTART.ubuntu	                        (rev 0)
+++ trunk/doc/QUICKSTART.ubuntu	2014-02-28 02:55:49 UTC (rev 3031)
@@ -0,0 +1,34 @@
+#!/bin/sh
+#Quickstart (tested on Ubuntu versions 9.10-13.10)
+#
+#You should probably be able to also run this README
+
+#For a build of the latest code directly from source control:
+
+#From a fresh Ubuntu installation, this should get you all the necessary
+#packages for a full featured install of the SWORD libs, compile and install
+#the engine, install a modules, and test with a simple command line tool:
+
+#install necessary package for all features of SWORD to be enabled
+sudo apt-get install autoconf autogen automake subversion g++ libtool zlib1g-dev libicu-dev libclucene-dev libcurl4-openssl-dev
+
+#checkout and build the source tree
+svn co https://crosswire.org/svn/sword/trunk sword
+cd sword
+./autogen.sh
+
+#you may want to review and edit usrinst.sh to see if the default options
+#meet your needs
+./usrinst.sh
+make -j
+sudo make install
+sudo make install_config
+
+#install a module
+sudo installmgr -init -sc -r CrossWire -ri CrossWire KJV
+
+#build and test a simple command line example tool
+cd examples/cmdline
+make
+./lookup KJV jn.3.16 
+


Property changes on: trunk/doc/QUICKSTART.ubuntu
___________________________________________________________________
Added: svn:executable
   + *




More information about the sword-cvs mailing list