summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2017-11-09 12:58:05 (GMT)
committerGitHub <noreply@github.com>2017-11-09 12:58:05 (GMT)
commitc808163964c787e13c0f75107d5e98c0b73558dc (patch)
treef6a9f6398a51c25bf5996ec5c0c11bf5be13f01f /docs
parent8a1320264e2f50cc2edcea2641d0c4afda1d7e9d (diff)
parenta653f80e7e184b4ba7169a36672ed0f94c5aabdc (diff)
downloadmxe-c808163964c787e13c0f75107d5e98c0b73558dc.zip
mxe-c808163964c787e13c0f75107d5e98c0b73558dc.tar.gz
mxe-c808163964c787e13c0f75107d5e98c0b73558dc.tar.bz2
Merge pull request #1969 from tonytheodore/github-releases
Add support for GitHub releases api
Diffstat (limited to 'docs')
-rw-r--r--docs/index.html16
1 files changed, 14 insertions, 2 deletions
diff --git a/docs/index.html b/docs/index.html
index d7006be..9946b3b 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -1245,13 +1245,25 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
$(PKG)_UPDATE</code> sections.
</p>
<p>
- To track normal release tags set:
- <pre>$(PKG)_GH_CONF := owner/repo[, tag prefix, tag suffix, tag filter-out, version separator]</pre>
+ To track releases set:
+ <pre>$(PKG)_GH_CONF := owner/repo/releases[/latest][, tag prefix, tag suffix, tag filter-out, version separator]</pre>
+ Releases may require setting _FILE, _SUBDIR, _URL, depending on
+ the naming convention used by the project for tarballs.
+ </p>
+ <p>
+ To track tags set:
+ <pre>$(PKG)_GH_CONF := owner/repo/tags[, tag prefix, tag suffix, tag filter-out, version separator]</pre>
+ </p>
+ <p>
To track branches, set:
<pre>$(PKG)_GH_CONF := owner/repo/branch</pre>
See the following packages for examples:
<ul>
<li>
+ <a href="https://github.com/mxe/mxe/blob/master/src/gc.mk">gc.mk</a>
+ for release tracking
+ </li>
+ <li>
<a href="https://github.com/mxe/mxe/blob/master/src/vmime.mk">vmime.mk</a>
for branch tracking
</li>