View as source file or XML.
sudo apt-get install build-essential cmakeTo install Bazaar (for building the latest Zorba source, or for building non-core modules):
sudo apt-get install bzr
sudo apt-get install libxml2-dev uuid-devRecommended libraries for core Zorba:
sudo apt-get install libicu-dev libxerces-c-devOptional libraries for core Zorba:
sudo apt-get install libxslt-dev libcurl4-openssl-dev libxerces-c-devSWIG and development requirements for Zorba language bindings:
sudo apt-get install swig python-dev php5-dev ruby-dev openjdk-6-jdk libaccess-bridge-java-jni
sudo apt-get install libtidy-dev
apt-cache show libgeos-dev | grep Version:
If it is lower than 3.2.2, then you may add our PPA to your list of repositories to get a later version:sudo add-apt-repository ppa:juan457/zorba sudo apt-get updateIn either case, install libgeos with:
sudo apt-get install libgeos-dev
sudo apt-get install imagemagick libmagick++-dev libmagickwand-dev
sudo add-apt-repository ppa:juan457/zorba sudo apt-get update sudo sudo apt-get install libc-client2007e libc-client2007e-devOr, you may build it yourself from source, so long as you force the -fPIC option:
wget ftp://ftp.cac.washington.edu/imap/imap-2007e.tar.gz tar -xf imap-2007e.tar.gz sudo apt-get install libpam-dev cd imap-2007e make lnp EXTRACFLAGS="-I/usr/include/openssl -fPIC"Note: In case of errors, delete all, untar and make again, don't trust make clean.If you do this, be sure to pass the path to the "c-client" subdirectory of your build to CMake when configuring Zorba, e.g.:
cmake -DCMAKE_PREFIX_PATH="~/imap-2007e/c-client" ../ make