This file is indexed.

/usr/share/doc/libuuidm-ocaml-dev/README is in libuuidm-ocaml-dev 0.9.3-3build5.

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
41
42
43
44
45
46
47
...............................................................................
Uuidm - Universally unique identifiers (UUIDs) for OCaml
        Release 0.9.3
...............................................................................

Uuidm is an OCaml module implementing 128 bits universally unique
identifiers version 3, 5 (named based with MD5, SHA-1 hashing) and 4
(random based) according to RFC 4122.

Uuidm is made of a single, independent, module and distributed under
the new BSD license.

Project home page : http://erratique.ch/software/uuidm
Contact : daniel.buenzl i@erratique.ch


# Installation

Uuidm was tested with OCaml 3.10. uuidm.mli and uuidm.ml contain
everything, the code, the documentation and the license. You can just
copy them to your project directory or better, if you use ocamlbuild,
issue the following commands from the root directory of your project :

  > ln -s /path/to/uuidm/distrib uuidm
  > echo "<uuidm/src> : include" >> _tags

The documentation is generated by ocamldoc from uuidm.mli. You can find
a generated version in the doc/ directory of the distribution.

If you have ocamlbuild, uuidm can be installed in the uuidm/ directory 
of `ocamlc -where` by typing :
 
  > ./build 
  > ./build install 

to install to a different location :

  > INSTALLDIR=/path/to/install/dir ./build install 

Test programs are provided in the test/ directory. They can be built
with :

  > ./build test.native
  > ./build perf.native
  > ./build uuid.native

Invoking them with -help will tell you more.