Make it possible to use multiple stages in run_stuff_*, e.g:

run_stuff_before="configure build install"

while here, document them in example.tmpl.

--HG--
extra : convert_revision : acca2ad2aed2467b244037b60132cf5461057acc
This commit is contained in:
Juan RP
2008-10-02 03:19:27 +02:00
parent ea61d25a06
commit 7b9c3503fa
2 changed files with 40 additions and 16 deletions

View File

@@ -66,3 +66,19 @@
# Second Line...........................................................
# Third line... blah blah blah..........................................
# Nth line... blah blah ..............................................."
# Use the following vars to execute arbitrary stuff at some stage
# while installing a package.
#
# There are three stages: configure, build and install; and
# also two states when this are run: before or after.
#
# Please take a look at templates/perl-run-stuff-{before,after}.sh files
# to know what to do with them.
#
#run_stuff_before="configure build install"
#run_stuff_before_configure_file="example-before-configure.sh"
#run_stuff_before_build_file="example-before-build.sh"
#run_stuff_before_install_file="example-before-install.sh"
#run_stuff_after="install"
#run_stuff_after_install_file="example-after-install.sh"