Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

DOC: list package containers in README #15

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,16 @@ will suffice.
The compilation requirements are:

* a recent version of ocaml (at least 4.02)
* containers (https://github.com/c-cube/ocaml-containers)
* xmlm (http://erratique.ch/software/xmlm)
* kaputt (http://kaputt.x9c.fr)
* kaputt (http://kaputt.x9c.fr) (optional)
* oasis (http://oasis.forge.ocamlcore.org)
* result (if you are running ocaml < 4.03 )
* sexplib

The easiest way to install them is via opam (https://opam.ocaml.org):

opam install oasis xmlm kaputt result sexplib
opam install containers oasis xmlm kaputt result sexplib

To initialize the configuration, call

Expand Down
4 changes: 2 additions & 2 deletions src/arg_handler.ml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ let handlers s =
]

let use_string =
("usage: tlapm [-fingerprints] [-xml-input] [-with-java path]" ^
"[-check-schema] [-toolbox from to] input_file")
("usage: tlapm [--fingerprints] [--xml-input] [--with-java path]" ^
"[--check-schema] [--toolbox from to] input_file")

let handle_arguments argv =
let s = { settings = default_settings } in
Expand Down