makepkg: Add docmunetation for separate pacakge function -> makepkg: Add documentation for the package function On Sun, Dec 21, 2008 at 8:13 AM, Allan McRae <allan@archlinux.org> wrote:
Signed-off-by: Allan McRae <allan@archlinux.org> --- doc/PKGBUILD.5.txt | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/doc/PKGBUILD.5.txt b/doc/PKGBUILD.5.txt index e42a8b8..5171798 100644 --- a/doc/PKGBUILD.5.txt +++ b/doc/PKGBUILD.5.txt @@ -254,6 +254,15 @@ If you create any variables of your own in the build function, it is recommended to use the bash `local` keyword to scope the variable to inside the build function.
+package() Function +------------------ +An optional package() function can be specified in addtion to the build() function.
addition
+This function is directly sourced by makepkg and run immediately after the build()
Maybe it could be simplified a bit to just say : This function is run immediately after the build() function.
+function. When specified in combination with the fakeroot BUILDENV option in +linkman:makepkg.conf[5], fakeroot usage will be limited to running the package() +function and the subsequent packing of the package. The build() function will be
Maybe it could be simplified a bit to just say : fakeroot usage will be limited to running the package() function. Otherwise it looks fine to me :)