blob: b67b262417f5dd0618f37d0db3a1db7c4382793e [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"
4
5S = "${WORKDIR}/git"
6
7inherit obmc-phosphor-license
8inherit native
Matt Spinlerde33cae2016-09-15 10:39:43 -05009inherit mrw-rev
Matt Spinler2332ef82016-08-25 13:04:09 -050010
11DEPENDS += "python-native python-lxml-native"
12
Matt Spinlerde33cae2016-09-15 10:39:43 -050013SRC_URI += "${MRW_PATCH_SRC_URI}"
14SRCREV = "${MRW_PATCH_SRCREV}"
Matt Spinler2332ef82016-08-25 13:04:09 -050015
16do_install() {
Matt Spinler471b8852016-09-20 13:32:44 -050017 install -d ${D}${bindir}/obmc-mrw
18 install -m 0755 patchxml.py ${D}${bindir}/obmc-mrw
Matt Spinler2332ef82016-08-25 13:04:09 -050019}