blob: 9ff3b8dd2960c2b95d5dcbb4098ff6d754b3038b [file] [log] [blame]
Matt Spinler2332ef82016-08-25 13:04:09 -05001SUMMARY = "Phosphor machine readable workbook patching script"
2DESCRIPTION = "Retrieve the script that can patch the MRW XML"
3PR = "r1"
Patrick Ventureef142502018-10-30 11:44:04 -07004PV = "1.0+git${SRCPV}"
Matt Spinler2332ef82016-08-25 13:04:09 -05005
6S = "${WORKDIR}/git"
7
8inherit obmc-phosphor-license
9inherit native
Matt Spinlerde33cae2016-09-15 10:39:43 -050010inherit mrw-rev
Matt Spinler2332ef82016-08-25 13:04:09 -050011
12DEPENDS += "python-native python-lxml-native"
13
Patrick Williams4f02a452016-10-31 15:46:40 -050014SRC_URI += "${MRW_TOOLS_SRC_URI}"
15SRCREV = "${MRW_TOOLS_SRCREV}"
Matt Spinler2332ef82016-08-25 13:04:09 -050016
17do_install() {
Matt Spinler471b8852016-09-20 13:32:44 -050018 install -d ${D}${bindir}/obmc-mrw
19 install -m 0755 patchxml.py ${D}${bindir}/obmc-mrw
Matt Spinler2332ef82016-08-25 13:04:09 -050020}