diff options
author | tnn <tnn@pkgsrc.org> | 2015-03-07 16:17:42 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2015-03-07 16:17:42 +0000 |
commit | 756449b5d621afa2b6ad73e019724cdb8a661805 (patch) | |
tree | 4d779863a9965f123304cede2bc1e867d9864695 /mk/fetch/github.mk | |
parent | 90ff72c93aff1057f100d527dabd56e4206bff63 (diff) | |
download | pkgsrc-756449b5d621afa2b6ad73e019724cdb8a661805.tar.gz |
improve inline documentation
Diffstat (limited to 'mk/fetch/github.mk')
-rw-r--r-- | mk/fetch/github.mk | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/mk/fetch/github.mk b/mk/fetch/github.mk index 01433c50744..9a7a8562547 100644 --- a/mk/fetch/github.mk +++ b/mk/fetch/github.mk @@ -1,4 +1,4 @@ -# $NetBSD: github.mk,v 1.2 2015/03/07 15:31:52 tnn Exp $ +# $NetBSD: github.mk,v 1.3 2015/03/07 16:17:42 tnn Exp $ # # github.com master site handling # @@ -18,20 +18,19 @@ # GH_TYPE overrides the autodetected MASTER_SITE URL scheme: # # "tag" -# This is the default when GH_TAGNAME is set. Exampe URL: -# http://www.github.com/acct/proj/archive/{GH_TAGNAME}.tar.gz +# This is the default when GH_TAGNAME is set or no type was specified. Exampe URL: +# http://github.com/acct/proj/archive/{GH_TAGNAME}.tar.gz # # "release" # This is the default when GH_RELEASE is set. Example URL: -# http://www.github.com/acct/proj/releases/download/${GH_RELEASE}/${DISTNAME}${EXTRACT_SUFX} +# http://github.com/acct/proj/releases/download/${GH_RELEASE}/${DISTNAME}.tar.gz # # "commit" -# This is the default when GH_TAGNAME and GH_COMMIT are empty. -# -${MASTER_SITE_GITHUB}${GH_ACCOUNT}/{GH_PROJECT}/releases/download/${PKGVERSION_NOREV}${EXTRACT_SUFX} +# This is the default when GH_COMMIT is set. Example URL: +# http://github.com/acct/proj/archive/${GH_COMMIT}.tar.gz # # Keywords: github - .if defined(USE_GITHUB) && !empty(USE_GITHUB:M[yY][eE][sS]) # maybe move this to sites.mk |