File: README

package info (click to toggle)
ocaml-expat 0.9.1-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 220 kB
  • ctags: 512
  • sloc: ml: 720; ansic: 572; makefile: 131; sh: 17
file content (40 lines) | stat: -rw-r--r-- 1,217 bytes parent folder | download | duplicates (5)
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
33
34
35
36
37
38
39
40
		       The ocaml-expat library

Overview

  Ocaml-Expat is a wrapper for the Expat XML parsing library. Expat is
  a library, written in C, for parsing XML documents. It's the
  underlying XML parser for the open source Mozilla project, Perl's
  XML::Parser, Python's xml.parsers.expat, and other open-source XML
  parsers.

Installation

  - Edit the variables at the beginning of the Makefile to reflect the
    location where expat is installed on your system. The defaults are
    ok for Linux.

  - Do "make depend" and "make all"	

  - If the Objective Caml native-code compiler is available on your
    platform (look for the "ocamlopt" executable), do "make allopt".

  - To generate the documentation, do "make doc"

  - (Optional) To test the library, do "make test". This requires the
    installation of OUnit.

  - (Optional) To test the library compiled with ocamlopt and ocamlc,
    do "make testall". This requires the installation of OUnit.

  - Become super-user if necessary and do "make install".  This
    installs the library in the standard Objective Caml library
    directory.
  
Documentation

  See the HTML documentation in doc/index.html

References

  Expat: <http://www.libexpat.org>