diff options
author | Tony Theodore <tonyt@logyst.com> | 2017-03-18 13:34:13 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2017-03-18 13:39:19 (GMT) |
commit | 3127d8e134b608ac760c0f819e5880e2ab0d7cb0 (patch) | |
tree | 256226ec1d14bae565096642c937c6e7e23ab2dd /docs | |
parent | 66a638e420199b04615ee4438f161cd60d9da299 (diff) | |
download | mxe-3127d8e134b608ac760c0f819e5880e2ab0d7cb0.zip mxe-3127d8e134b608ac760c0f819e5880e2ab0d7cb0.tar.gz mxe-3127d8e134b608ac760c0f819e5880e2ab0d7cb0.tar.bz2 |
docs: add notes on setting $(PKG)_GH_CONF
Diffstat (limited to 'docs')
-rw-r--r-- | docs/index.html | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/docs/index.html b/docs/index.html index 8d00fc4..5f704d7 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1249,11 +1249,20 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre> <p> GitHub hosted projects can automatically configure updates, - urls, file names etc., see: + urls, file names etc. by setting <code>$(PKG)_GH_CONF</code> + instead of <code>$(PKG)_FILE, $(PKG)_SUBDIR, $(PKG)_URL, and + $(PKG)_UPDATE</code> sections. + </p> + <p> + To track normal release tags set: + <pre>$(PKG)_GH_CONF := owner/repo[, tag prefix, tag suffix, tag filter, version separator]</pre> + 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/vmime.mk">vmime.mk</a> - for an example of branch tracking + for branch tracking </li> <li> <a href="https://github.com/mxe/mxe/blob/master/src/libevent.mk">libevent.mk</a> |