mirror of
https://github.com/lingble/meta-tegra.git
synced 2025-10-29 03:22:36 +00:00
to improve compatibility with devtool. Signed-off-by: Matt Madison <matt@madison.systems>
22 lines
400 B
BlitzBasic
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
|
|
}
|