blob: 11544f9d14e63a122a51fb4d593e0004b52dc182 [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}"
Patrick Venturec5975b62018-11-06 10:03:19 -08005LICENSE = "Apache-2.0"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
Matt Spinler2332ef82016-08-25 13:04:09 -05007
8S = "${WORKDIR}/git"
9
Matt Spinler2332ef82016-08-25 13:04:09 -050010inherit native
Matt Spinlerde33cae2016-09-15 10:39:43 -050011inherit mrw-rev
Matt Spinler2332ef82016-08-25 13:04:09 -050012
13DEPENDS += "python-native python-lxml-native"
14
Patrick Williams4f02a452016-10-31 15:46:40 -050015SRC_URI += "${MRW_TOOLS_SRC_URI}"
16SRCREV = "${MRW_TOOLS_SRCREV}"
Matt Spinler2332ef82016-08-25 13:04:09 -050017
18do_install() {
Matt Spinler471b8852016-09-20 13:32:44 -050019 install -d ${D}${bindir}/obmc-mrw
20 install -m 0755 patchxml.py ${D}${bindir}/obmc-mrw
Matt Spinler2332ef82016-08-25 13:04:09 -050021}