void-packages/common/hooks
2014-03-02 06:30:25 +01:00
..
post-build Introduce common/hooks to implement hooks at specified phases. 2014-02-12 10:44:21 +01:00
post-configure Introduce common/hooks to implement hooks at specified phases. 2014-02-12 10:44:21 +01:00
post-extract common/hooks: new post-extract hook: apply-patches (moved from xbps-src). 2014-02-12 18:38:32 +01:00
post-fetch Introduce common/hooks to implement hooks at specified phases. 2014-02-12 10:44:21 +01:00
post-install hooks/post-install/03-strip-and-debug-pkgs.sh: respect $noarch and $nostrip. 2014-02-13 17:12:09 +01:00
post-pkg comon/hooks: update pkg hooks to also create/register -dbg pkgs. 2014-03-02 06:30:25 +01:00
pre-build Introduce common/hooks to implement hooks at specified phases. 2014-02-12 10:44:21 +01:00
pre-configure pre-configure/gnu-configure-asneeded.sh: do nothing if configure_script does not exist. 2014-02-15 05:12:32 +01:00
pre-extract Introduce common/hooks to implement hooks at specified phases. 2014-02-12 10:44:21 +01:00
pre-fetch Introduce common/hooks to implement hooks at specified phases. 2014-02-12 10:44:21 +01:00
pre-install Introduce common/hooks to implement hooks at specified phases. 2014-02-12 10:44:21 +01:00
pre-pkg comon/hooks: update pkg hooks to also create/register -dbg pkgs. 2014-03-02 06:30:25 +01:00
README common/hooks: add some hooks moved from xbps-src (not yet used). 2014-02-12 12:55:42 +01:00

HOOKS
=====

This directory contains shell hooks that are processed after or before the
specified phase. The shell hooks are simply shell snippets (must not be
executable nor contain a shebang) that are processed lexically by xbps-src.
Only files with the `.sh` extension are processed.

A shell hook must provide a `hook()` function which is the entry point to
execute it via xbps-src.

The following directories are used to set the order in which the hooks
should be processed by xbps-src:

	* pre-fetch		(before running fetch phase)
	* post-fetch		(after running fetch phase)
	* pre-extract		(before running extract phase)
	* post-extract		(after running extract phase)
	* pre-configure		(before running configure phase)
	* post-configure	(after running configure phase)
	* pre-build		(before running build phase)
	* post-build		(after running build phase)
	* pre-install		(before running install phase)
	* post-install		(after running install phase)
	* pre-pkg		(before running pkg phase)
	* post-pkg		(after running pkg phase)

NOTES
~~~~~
* Symlinks can be created (relative) to make a hook available in multiple phases.