Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/doc/man/pkgctl-build.1.asciidoc
diff options
context:
space:
mode:
authorChristian Heusel <christian@heusel.eu>2023-06-15 16:30:41 +0200
committerLevente Polyak <anthraxx@archlinux.org>2024-02-06 19:38:50 +0100
commit5042dcaeb4916e199b30ecf21048a4234da43499 (patch)
tree1631ad25e8e7b5973ac8363da016bf77b6aa7e38 /doc/man/pkgctl-build.1.asciidoc
parent67fdb58758db553d2c081cf16fbfb54e8d4e932d (diff)
feat(build): allow to test-install the built packages
This change introduces the new --install-to-host flag to pkgctl build, which can be used with one of the modes 'all' or 'auto'. Depending on the mode either all or just already installed packages are installed to the host system. BREAKING CHANGE: the --install flag is renamed to --install-to-chroot to avoid confusion with the newly introduced flag. Component: pkgctl build Signed-off-by: Christian Heusel <christian@heusel.eu> Signed-off-by: Levente Polyak <anthraxx@archlinux.org>
Diffstat (limited to 'doc/man/pkgctl-build.1.asciidoc')
-rw-r--r--doc/man/pkgctl-build.1.asciidoc14
1 files changed, 11 insertions, 3 deletions
diff --git a/doc/man/pkgctl-build.1.asciidoc b/doc/man/pkgctl-build.1.asciidoc
index 12deaaa..e7ec714 100644
--- a/doc/man/pkgctl-build.1.asciidoc
+++ b/doc/man/pkgctl-build.1.asciidoc
@@ -35,9 +35,6 @@ Build Options
*-c, --clean*::
Recreate the chroot before building
-*-I, --install* 'FILE'::
- Install a package into the working copy of the chroot
-
*--inspect* 'WHEN'::
Spawn an interactive shell to inspect the chroot after building. Useful to ease the debugging of a package build. +
Possible values for 'WHEN' are `'never'`, `'always'` or `'failure'`
@@ -51,6 +48,17 @@ Build Options
*--nocheck*::
Do not run the check() function in the PKGBUILD
+Install Options
+---------------
+
+*-I, --install-to-chroot* 'FILE'::
+ Install a package to the working copy of the chroot
+
+*-i, --install-to-host* 'MODE'::
+ Install the built packages to the host system. Useful when one wants to verify that the package works as intended.
+ * When 'MODE' is 'all', this installs all built packages
+ * When 'MODE' is 'auto', this installs all built packages which are currently installed
+
PKGBUILD Options
----------------