# ---------------------------------------------------------------------------- # build_libapr1.txt - how to build the libapr1 binaries # and create folder and packages # # Creation : 2012-02-17 root # 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:// libapr1 # libapr1-0.4.6.tar.bz2 ### Extract archive into a temporary location tar -xjvf libapr1-0.4.6.tar.bz2 cd libapr1-0.4.6 ### Build ./configure --prefix=/usr make make install ### Strip files/binaries strip -s *** ### Copy binaries cp *** /trunk/lib/libapr1/_bin_0.4.6/*** ### Copy header files cp *** /trunk/lib/libapr1/-dev_bin_0.4.6/*** ### Add the copied files to the repository and commit them svn add /trunk/lib/libapr1/_bin_0.4.6/... svn ci /trunk/lib/libapr1/_bin_0.4.6 -m "Added binaries" svn add /trunk/lib/libapr1/-dev_bin_0.4.6/... svn ci /trunk/lib/libapr1/-dev_bin_0.4.6 -m "Added header files" ### Create the file lists using the menu entry "4 - (Re)Create file list for a folder on a package"