You can search for identifiers within the package.
in-package search v0.2.0
why3find
Why3find.Meta
type pkg = {
name : string;
path : string;
depends : string list;
drivers : string list;
extracted : bool;
}
val shared : string -> string
shared f returns the path of file f installed in shared directory.
shared f
f
val path : string -> string
path pkg returns the topmost installation path of package pkg.
path pkg
pkg
val find : string -> pkg
find pkg returns the installed package META data, if installed.
find pkg
val find_all : string list -> pkg list
find_all pkgs returns all listed packages and their dependencies, in dependency order.
find_all pkgs
val install : pkg -> unit
install pkg install the package META data.
install pkg