diff options
Diffstat (limited to 'Manual.md')
-rw-r--r-- | Manual.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Manual.md b/Manual.md index 37e9f06fbe6..449a5b2ce64 100644 --- a/Manual.md +++ b/Manual.md @@ -121,6 +121,8 @@ function, which is the directory to be used to compile the `source package`. - `build` This phase compiles/prepares the `source files` via `make` or any other compatible method. +- `check` This optional phase checks the result of the `build` phase for example by running `make -k check`. + - `install` This phase installs the `package files` into the package destdir `<masterdir>/destdir/<pkgname>-<version>`, via `make install` or any other compatible method. @@ -359,6 +361,10 @@ will be installed to the master directory. There is no need to specify a version because the current version in srcpkgs will always be required. Example `makedepends="foo blah"`. +- `checkdepends` The list of dependencies required to run the package checks, i.e. +the script or make rule specified in the template's `do_check()` function. +Example `checkdepends="gtest"`. + - `depends` The list of dependencies required to run the package. These dependencies are not installed to the master directory, rather are only checked if a binary package in the local repository exists to satisfy the required version. Dependencies |