From 8e53cea8f84332b394f503a8e6194c268e8283b1 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 19 Dec 2007 23:41:17 -0600 Subject: Update PKGBUILD manpage to give info on scriptlet arguments Signed-off-by: Dan McGee --- doc/PKGBUILD.5.txt | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'doc') diff --git a/doc/PKGBUILD.5.txt b/doc/PKGBUILD.5.txt index 1ebf4a69..743453db 100644 --- a/doc/PKGBUILD.5.txt +++ b/doc/PKGBUILD.5.txt @@ -204,22 +204,28 @@ itself after installation and perform an opposite action upon removal. The exact time the script is run varies with each operation: *pre_install*:: - script is run right before files are extracted. + script is run right before files are extracted. One argument is passed: + new package version. *post_install*:: - script is run right after files are extracted. + script is run right after files are extracted. One argument is passed: + new package version. *pre_upgrade*:: - script is run right before files are extracted. + script is run right before files are extracted. Two arguments are passed + in the following order: new package version, old package version. *post_upgrade*:: - script is run after files are extracted. + script is run after files are extracted. Two arguments are passed + in the following order: new package version, old package version. *pre_remove*:: - script is run right before files are removed. + script is run right before files are removed. One argument is passed: + old package version. *post_remove*:: - script is run right after files are removed. + script is run right after files are removed. One argument is passed: + old package version. To use this feature, create a file such as 'pkgname.install' and put it in the same directory as the PKGBUILD script. Then use the install directive: -- cgit v1.2.3-24-g4f1b