package why3find

  1. Overview
  2. Docs
type pkg = {
  1. name : string;
  2. path : string;
  3. depends : string list;
  4. drivers : string list;
  5. extracted : bool;
}
val shared : string -> string

shared f returns the path of file f installed in shared directory.

val path : string -> string

path pkg returns the topmost installation path of package pkg.

val find : string -> pkg

find pkg returns the installed package META data, if installed.

val find_all : string list -> pkg list

find_all pkgs returns all listed packages and their dependencies, in dependency order.

val install : pkg -> unit

install pkg install the package META data.

OCaml

Innovation. Community. Security.