diff options
Diffstat (limited to 'recipes-kernel/lopper/lopper_git.bb')
| -rw-r--r-- | recipes-kernel/lopper/lopper_git.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes-kernel/lopper/lopper_git.bb b/recipes-kernel/lopper/lopper_git.bb new file mode 100644 index 00000000..606dab64 --- /dev/null +++ b/recipes-kernel/lopper/lopper_git.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | SUMMARY = "Device Tree Lopper" | ||
| 2 | DESCRIPTION = "Tool for manipulation of system device tree files" | ||
| 3 | LICENSE = "BSD-3-Clause" | ||
| 4 | SECTION = "bootloader" | ||
| 5 | |||
| 6 | SRC_URI = "git://github.com/devicetree-org/lopper.git;branch=master;protocol=https" | ||
| 7 | SRCREV = "3c81fcce08eeb64cbbde1535abd83572985a8689" | ||
| 8 | S = "${WORKDIR}/git" | ||
| 9 | |||
| 10 | PV="v1.0+git${SRCPV}" | ||
| 11 | |||
| 12 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=8e5f5f691f01c9fdfa7a7f2d535be619" | ||
| 13 | |||
| 14 | RDEPENDS:${PN} = " \ | ||
| 15 | python3-core \ | ||
| 16 | python3-dtc \ | ||
| 17 | python3-humanfriendly \ | ||
| 18 | " | ||
| 19 | |||
| 20 | inherit setuptools3 | ||
| 21 | |||
| 22 | INHIBIT_PACKAGE_STRIP = "1" | ||
| 23 | |||
| 24 | do_install:append() { | ||
| 25 | # we have to remove the vendor'd libfdt, since an attempt to strip it | ||
| 26 | # will be made, and it will fail in a cross environment. | ||
| 27 | rm -rf ${D}/${PYTHON_SITEPACKAGES_DIR}/${BPN}/vendor | ||
| 28 | } | ||
| 29 | |||
| 30 | BBCLASSEXTEND = "native nativesdk" | ||
| 31 | |||
