mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
dafba0a9a3
Since we know that github archives which are automatically generated have a
tendency to change their checksums[1], switch to using a git clone.
[1] http://lists.openembedded.org/pipermail/openembedded-devel/2017-September/114916.html
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
(cherry picked from commit 0c37018e7b)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
20 lines
571 B
BlitzBasic
20 lines
571 B
BlitzBasic
SUMMARY = "A multi-platform support library with a focus on asynchronous I/O"
|
|
HOMEPAGE = "https://github.com/libuv/libuv"
|
|
BUGTRACKER = "https://github.com/libuv/libuv/issues"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=bb5ea0d651f4c3519327171906045775"
|
|
|
|
S = "${WORKDIR}/git"
|
|
SRCREV = "7452ef4e06a4f99ee26b694c65476401534f2725"
|
|
BRANCH = "v1.x"
|
|
SRC_URI = "git://github.com/libuv/libuv.git;protocol=https;branch=${BRANCH};"
|
|
|
|
inherit autotools
|
|
|
|
do_configure() {
|
|
${S}/autogen.sh || bbnote "${PN} failed to autogen.sh"
|
|
oe_runconf
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|