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