This file is indexed.

/usr/share/doc/libexpat-ocaml-dev/README is in libexpat-ocaml-dev 0.9.1+debian1-7build8.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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>