package lambdapi
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=2c251021b6fac40c05282ca183902da5b1008e69d9179d7a9543905c2c21a28a
sha512=69535f92766e6fedc2675fc214f0fb699bde2a06aa91d338c93c99756235a293cf16776f6328973dda07cf2ad402e58fe3104a08f1a896990c1778b42f7f9fcf
doc/lambdapi.parsing/Parsing/Package/index.html
Module Parsing.Package
Source
Find and read lambdapi.pkg files.
A package configuration file is expected at the root of every package. The file is used to figure out the module path under which the package must be placed. This information is also useful for installation.
Pacage configuration file name.
Configuration file format (using an example).
==== lambdapi.pkg ============ # only two required fields: package_name = my_package root_path = contrib.my_pack # comments not at end of line undefined = ignored ==============================
Configuration data read from a file.
read fname
reads configuration data from the file fname
. The exception Fatal
is raised in case of error (non-existing file, bad format).
find_config fname
looks for a configuration file above fname
, which is typically a source file or an object file (it can also be a directory). If there is no configuration file in the same directory as fname
, then we look in the parent directory and so on, up to the root or as long as no Sys_error
is raised. Note that fname
is first normalized with a call to Filename.realpath
.
apply_config fname
attempts to find a configuration file from the directory or file fname
, and applies the corresponding configuration.