1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
This document explains how to build the sourceforge
HBA API wraper library from source using the hbaapi_build
repository.
##
# HBA API Wrapper Library
##########################
DEPENDENCIES
* autoconf
* autotools
* sysconftool
* automake
* libtool
PROCESS
1) Obtain the source tarball from sourceforge
http://sourceforge.net/projects/hbaapi/
2) Untar the tarball and move its contents to hbaapi_build/
and change into its directory
# tar -xvzf hbaapi_src_2.2.tgz
# mv hbaapi_src_2.2/* hbaapi_build/
# rmdir hbaapi_src_2.2/
3) Bootstrap, configure, make and make install
# ./bootstrap.sh
# rpm --eval "%configure" | sh
# make
# make install
|