INSTALL 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. libzipper
  2. Michael McMaster <michael@codesrc.com>
  3. * Refer to INSTALL.Android for Google Android NDK compilation information.
  4. Pre-Requisites
  5. g++ (4.5.3)
  6. make (GNU make 3.81)
  7. zlib (1.2.3)
  8. doxygen (1.7.4)
  9. Optional
  10. automake (1.11), autoconf (2.68), libtool (2.4)
  11. (Required if building from git)
  12. graphviz (2.26.3) (for dependency diagrams in the generated docs)
  13. When building from sources obtained from the git repository, the configure
  14. script must be created first using the autoconf/automake/libtool packages.
  15. The supplied autogen.sh script automates this process.
  16. *NOTE: it is not necessary to run the autogen.sh script when using a
  17. source distribution release. ie. If you obtained the sources via
  18. libzipper-major.minor.patch.tar.gz, do not run autogen.sh
  19. ./autogen.sh
  20. The configure script creates the makefiles specific to your host. eg. It
  21. allows the paths to dependant packages to be specified.
  22. ./configure --prefix=/usr
  23. The --prefix option specifies the base installation directory, and defaults
  24. to /usr/local (in which case, the library would be installed in /usr/local/lib,
  25. and the zipper binary would be installed in /usr/local/bin).
  26. To obtain a complete listing of configure options, use the --help option.
  27. ./configure --help
  28. Once the configure script is run, the software can be compiled.
  29. make
  30. Now it's time to install the software. This step must be run by a user with
  31. write access to the installation directory (/usr/local by default).
  32. make install