diff options
author | rillig <rillig@pkgsrc.org> | 2006-11-20 00:03:22 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-11-20 00:03:22 +0000 |
commit | 2c30bd90a70e3e79995d67ad0266b676ff4176f5 (patch) | |
tree | 1b4e3d48e57fdadd36b5970fec540e9152d073b7 /mk/extract/bsd.extract.mk | |
parent | 3d417edd6849a93405f7a78698e569a90c4cdecb (diff) | |
download | pkgsrc-2c30bd90a70e3e79995d67ad0266b676ff4176f5.tar.gz |
Added better documentation for pre-extract, do-extract and post-extract.
They are found by "make help" now.
Diffstat (limited to 'mk/extract/bsd.extract.mk')
-rw-r--r-- | mk/extract/bsd.extract.mk | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/mk/extract/bsd.extract.mk b/mk/extract/bsd.extract.mk index 3c837c7afbe..4d6905f98da 100644 --- a/mk/extract/bsd.extract.mk +++ b/mk/extract/bsd.extract.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.extract.mk,v 1.1 2006/06/06 03:05:48 jlam Exp $ +# $NetBSD: bsd.extract.mk,v 1.2 2006/11/20 00:03:22 rillig Exp $ # # This Makefile fragment is included to bsd.pkg.mk and defines the # relevant variables and targets for the "extract" phase. @@ -9,7 +9,25 @@ # # The following targets may be overridden in a package Makefile: # -# pre-extract, do-extract, post-extract +# pre-extract: +# Can be used to prepare the distfiles for extraction. +# For binary-only packages, this can mean to make the distfile +# executable. +# +# Default action: Nothing. +# +# do-extract: +# This target does the "real" work of extracting the distfiles. +# +# Default action: Extracts the files listed in EXTRACT_ONLY into +# WRKDIR. +# +# post-extract: +# Can be used to remove unneeded files that have been extracted. +# Often, additional files from FILESDIR are copied to WRKSRC here, +# too. +# +# Default action: Nothing. # .include "${PKGSRCDIR}/mk/extract/extract.mk" |