/usr/share/doc/libestring-ocaml/README.md is in libestring-ocaml 20130822-5build1.
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 48 49 50 51 52 53 54 55 | estring - extension for string literals
=======================================
Estring is a syntax extension which aims to make the use of custom
string types more convenient.
The idea is to replace this kind of code:
(My_string.of_string "string literals")
by:
m"string literals"
Dependencies
------------
* [OCaml](http://caml.inria.fr/ocaml/) (>= 3.11)
* [findlib](http://projects.camlcity.org/projects/findlib.html)
For building the development version, you also need to install
[oasis](http://oasis.forge.ocamlcore.org/) (>= 0.3.0).
Installation
------------
To build and install estring:
$ ./configure
$ make
$ make install
### Documentation _(optional)_
To build the documentation:
$ make doc
It will then be installed by `make install`.
### Tests _(optionnal)_
To build and execute tests:
$ ./configure --enable-tests
$ make test
Usage
-----
Files in the "sample" directory show how to define string convertors.
For the distribution of your project, you can either add a dependency
to the estring package or embed it in your sources. Several instances
of estring can work together so this will not break anything.
|