module BaseSetup:sig..end
typestd_args_fun =OASISTypes.package -> OASISTypes.arg array -> unit
type('a, 'b)section_args_fun =OASISTypes.name *
(OASISTypes.package ->
OASISTypes.common_section * 'a -> OASISTypes.arg array -> 'b)
type t = {
|
configure : |
|||
|
build : |
|||
|
doc : |
|||
|
test : |
|||
|
install : |
|||
|
uninstall : |
|||
|
clean : |
|||
|
clean_doc : |
|||
|
clean_test : |
|||
|
distclean : |
|||
|
distclean_doc : |
|||
|
distclean_test : |
|||
|
package : |
|||
|
oasis_fn : |
(* |
Filename of _oasis that matches the package field.
| *) |
|
oasis_version : |
(* |
OASIS version that has generated this structure.
| *) |
|
oasis_digest : |
(* |
Digest of _oasis that matches the package field.
| *) |
|
oasis_exec : |
(* |
Name of oasis executable to use, only for testing.
| *) |
|
oasis_setup_args : |
(* |
Args to use when updating the setup.ml.
| *) |
|
setup_update : |
(* |
Are we allowed to update the setup.ml (eq. of -setup-update weak).
| *) |
val configure : t -> OASISTypes.arg array -> unitval build : t -> OASISTypes.arg array -> unitval doc : t -> OASISTypes.arg array -> unitval test : t -> OASISTypes.arg array -> unitval install : t -> OASISTypes.arg array -> unitval uninstall : t -> OASISTypes.arg array -> unitval clean : t -> OASISTypes.arg array -> unitval distclean : t -> OASISTypes.arg array -> unitval reinstall : t -> OASISTypes.arg array -> unitval all : t -> OASISTypes.arg array -> unitval version : t -> OASISTypes.arg array -> unitval setup : t -> unitval default_oasis_fn : OASISTypes.host_filenameval default_filename : OASISTypes.host_filenameval find : OASISPlugin.context_act -> OASISFileTemplate.templateval of_package : ?oasis_fn:OASISTypes.host_filename ->
?oasis_exec:OASISTypes.host_filename ->
?oasis_setup_args:string list ->
setup_update:bool ->
OASISSetupUpdate.t ->
OASISTypes.package -> OASISPlugin.context_act * tt and plugin context from an OASIS package and the
matching _oasis. Not exported.