| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | libzipperMichael McMaster <michael@codesrc.com>* Refer to INSTALL.Android for Google Android NDK compilation information.Pre-Requisites	g++  (4.5.3)	make (GNU make 3.81)	zlib (1.2.3)	doxygen (1.7.4)Optional	automake (1.11), autoconf (2.68), libtool (2.4)		(Required if building from git)	graphviz (2.26.3) (for dependency diagrams in the generated docs)When building from sources obtained from the git repository, the configurescript must be created first using the autoconf/automake/libtool packages.The supplied autogen.sh script automates this process.*NOTE: it is not necessary to run the autogen.sh script when using asource distribution release. ie. If you obtained the sources vialibzipper-major.minor.patch.tar.gz, do not run autogen.sh	./autogen.shThe configure script creates the makefiles specific to your host. eg. Itallows the paths to dependant packages to be specified.	./configure --prefix=/usrThe --prefix option specifies the base installation directory, and defaultsto /usr/local (in which case, the library would be installed in /usr/local/lib,and the zipper binary would be installed in /usr/local/bin).To obtain a complete listing of configure options, use the --help option.	./configure --helpOnce the configure script is run, the software can be compiled.	makeNow it's time to install the software. This step must be run by a user withwrite access to the installation directory (/usr/local by default).	make install
 |