#---------------------------------------------------------------------------- # build_libpcre.txt - how to build the libpcre binaries # and create folder and packages # # Creation : 2010-09-17 alex # Last update: $Id$ # # !!! This is not a script but an step-by-step howto !!! #---------------------------------------------------------------------------- exit 1 ### Download the source code from the internet, e.g. # http:// libpcre # libpcre-0.0.1.tar.bz2 ### Extract archive into a temporary location tar -xjvf libpcre-0.0.1.tar.bz2 cd libpcre-0.0.1 ### Build ./configure --prefix=/usr make make install ### Strip files/binaries strip -s *** ### Copy binaries cp *** /trunk/lib/libpcre/_bin_0.0.1/*** ### Copy header files cp *** /trunk/lib/libpcre/-dev_bin_0.0.1/*** ### Add the copied files to the repository and commit them svn add /trunk/lib/libpcre/_bin_0.0.1/... svn ci /trunk/lib/libpcre/_bin_0.0.1 -m "Added binaries" svn add /trunk/lib/libpcre/-dev_bin_0.0.1/... svn ci /trunk/lib/libpcre/-dev_bin_0.0.1 -m "Added header files" ### Create the file lists using the menu entry "4 - (Re)Create file list for a folder on a package"