mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 11:14:42 +00:00
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. I tried backporting Richard's master change but there where many merge conflicts. I went the lazy route and ran the script. This is work based on "b402a3076 recipes: Update SRC_URI branch and protocols" Signed-off-by: Armin Kuster <akuster808@gmail.com>
19 lines
533 B
BlitzBasic
19 lines
533 B
BlitzBasic
SUMMARY = "MBW determines the copy memory bandwidth available to userspace programs"
|
|
HOMEPAGE = "http://github.com/raas/mbw"
|
|
SECTION = "console/tests"
|
|
LICENSE = "LGPLv2.1"
|
|
LIC_FILES_CHKSUM = "file://mbw.spec;beginline=1;endline=10;md5=bbb77813272134a5c461f71abe945bef"
|
|
|
|
SRC_URI = "git://github.com/raas/${BPN}.git;branch=master;protocol=https"
|
|
|
|
SRCREV = "2a15026ff65160127204881263464b1740a57198"
|
|
|
|
PV = "1.4+git${SRCPV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${B}/mbw ${D}${bindir}
|
|
}
|