Files
meta-tegra/recipes-l4t-workarounds/tar/tar-l4t-workaround-native_1.0.bb
Matt Madison ef9eb285e5 meta: update -native recipes to use inherit_defer
to improve compatibility with devtool.

Signed-off-by: Matt Madison <matt@madison.systems>
2024-05-31 09:57:00 -07:00

22 lines
400 B
BlitzBasic

DESCRIPTION = "tar wrapper script for handling zstd suffix"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SRC_URI = "file://tar-wrapper.sh"
NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}"
inherit_defer native
do_configure() {
:
}
do_compile() {
:
}
do_install() {
install -m 0755 -D ${UNPACKDIR}/tar-wrapper.sh ${D}${bindir}/tar
}