Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 1 | SUMMARY = "A multi-platform support library with a focus on asynchronous I/O" |
| 2 | HOMEPAGE = "https://github.com/libuv/libuv" |
| 3 | DESCRIPTION = "libuv is a multi-platform support library with a focus on asynchronous I/O. It was primarily developed for use by Node.js, but it's also used by Luvit, Julia, pyuv, and others." |
| 4 | BUGTRACKER = "https://github.com/libuv/libuv/issues" |
| 5 | LICENSE = "MIT" |
| 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=a68902a430e32200263d182d44924d47" |
| 7 | |
| 8 | SRCREV = "988f2bfc4defb9a85a536a3e645834c161143ee0" |
| 9 | SRC_URI = "git://github.com/libuv/libuv;branch=v1.x;protocol=https" |
| 10 | |
| 11 | S = "${WORKDIR}/git" |
| 12 | |
| 13 | inherit autotools |
| 14 | |
| 15 | do_configure() { |
| 16 | ${S}/autogen.sh || bbnote "${PN} failed to autogen.sh" |
| 17 | oe_runconf |
| 18 | } |
| 19 | |
| 20 | BBCLASSEXTEND = "native" |