Project

General

Profile

Build » History » Revision 2

Revision 1 (stbuehler, 2009-02-18 22:45) → Revision 2/3 (stbuehler, 2009-02-18 22:49)

h1. Build 

 * Download the sources (verify the MD5/SHA1 checksums if you want) 
 * Extact them 
   <pre>tar -xf spawn-fcgi-1.6.0.tar.gz</pre> 
 * Use either the automake or cmake build system 

 h3. automake build 

 <pre> 
 ./configure --prefix=/usr 
 make 
 su make install 
 </pre> 

 h3. cmake build (requires cmake 2.6.0) - http://www.cmake.org/ 

 <pre> 
 cmake -D CMAKE_INSTALL_PREFIX:string=/usr . 
 make 
 su make install 
 </pre> 

 h3. install into temporary directory for packaging 

 Use 
 <pre> 
 DESTDIR=/tmp/spawn-fcgi-package make install 
 </pre> 
 instead of @su make install@