mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
b402a3076f
This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
16 lines
511 B
BlitzBasic
16 lines
511 B
BlitzBasic
SUMMARY = "Simple wrapper script which proxies signals to a child"
|
|
HOMEPAGE = "https://github.com/Yelp/dumb-init/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=5940d39995ea6857d01b8227109c2e9c"
|
|
|
|
SRCREV = "89c1502b9d40b5cb4a844498b14d74ba1dd559bf"
|
|
SRC_URI = "git://github.com/Yelp/dumb-init;branch=master;protocol=https"
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = "CC='${CC}' CFLAGS='${CFLAGS} ${LDFLAGS}'"
|
|
|
|
do_install() {
|
|
install -d ${D}${base_sbindir}
|
|
install ${S}/dumb-init ${D}${base_sbindir}/
|
|
}
|