diff options
| author | Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> | 2013-11-02 17:13:34 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-11-02 18:26:41 +0100 |
| commit | df70822c62f4bf0ff59d4f07315ca70028a67aee (patch) | |
| tree | b0c87ab1efafc8d10ad4397ebe43852f56d6746a /package/civetweb | |
| parent | e6ea6b78658b4c8bdf51c5bc45547065ae27f17b (diff) | |
| download | buildroot-df70822c62f4bf0ff59d4f07315ca70028a67aee.tar.gz buildroot-df70822c62f4bf0ff59d4f07315ca70028a67aee.zip | |
package: cleanup github <pkg>{_VERSION, _SOURCE, _SITE} variable
According to the documentation, chapter
6.2.8.2 How to add a package from github
"
[...]
FOO_VERSION = tag or full commit ID
FOO_SITE = http://github.com/<user>/<package>/tarball/$(FOO_VERSION)
[...]
- The tarball name generated by github matches the default one from
Buildroot (...),
so it is not necessary to specify it in the +.mk+ file.
"
This commit makes the appropriate changes.
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/civetweb')
| -rw-r--r-- | package/civetweb/civetweb.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/civetweb/civetweb.mk b/package/civetweb/civetweb.mk index 171ad0cf29..dd74d97d42 100644 --- a/package/civetweb/civetweb.mk +++ b/package/civetweb/civetweb.mk @@ -4,8 +4,8 @@ # ################################################################################ -CIVETWEB_VERSION = 1.3 -CIVETWEB_SITE = http://github.com/sunsetbrew/civetweb/tarball/v$(CIVETWEB_VERSION) +CIVETWEB_VERSION = v1.3 +CIVETWEB_SITE = http://github.com/sunsetbrew/civetweb/tarball/$(CIVETWEB_VERSION) CIVETWEB_LICENSE = MIT CIVETWEB_LICENSE_FILES = LICENSE.md |

