The findlib user's guide and reference manual | ||
---|---|---|
Prev |
...somewhere in the filesystem hierarchy... | \ site-lib | +- package1 | | | +- META | +- archive files | +- interface definitions | +- package2 + : : \ packageN
Every installation of "findlib" has a default location for package directories, which is normally a directory called "site-lib". The location can be set by the configuration variables path (used to look up packages), and destdir (used to install new packages); see findlib.conf.
The name of a package is the name of the package directory. For example, if destdir=/usr/local/lib/ocaml/site-lib, the package p will be installed in the subdirectory /usr/local/lib/ocaml/site-lib/p. This subdirectory must contain the META file and all other files belonging to the package.
The variable destdir specifies the directory for new packages. You can only have one such directory at a time; but of course you can change this directory in findlib.conf. The command ocamlfind install puts new packages into this directory; it is recommended to use this command for installation because it ensures that the directory layout is right.
For searching packages, findlib uses (only) the variable path which may name several locations to look at.
...somewhere in the filesystem hierarchy... | \ site-lib | +- package1 | | | +- archive files | +- interface definitions | +- package2 + : : \ : packageN | \ metaregistry | +- META.package1 +- META.package2 + : \ META.packageN
This is an alternate directory layout collecting all META files in one directory. You can configure this layout by setting path to the absolute location of metaregistry. Findlib recognizes that there are META files in this directory and uses them; it is not necessary to include site-lib into the path.
In order to work, the META files must contain a directory directive pointing to the corresponding package directory that resides below site-lib.
The command ocamlfind install copes with this layout, too. The variable destdir must contain the absolute location of site-lib, and the variable metadir must contain the absolute location of metaregistry. Note that ocamlfind install automatically adds a directory directive to the META file, so you need not do it manually.