mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-07-19 12:59:04 +02:00

The meta-fsl-arm is going to be used as the base for this layer. It contains a clean history and allowing a more granullar set of changes. This commit is just a rename of all contents of meta-fsl-arm subdirectory to this layer's root, subsequent changes are based on top of that. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
24 lines
544 B
BlitzBasic
24 lines
544 B
BlitzBasic
DESCRIPTION = "provides the tcl script for endian swap"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \
|
|
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
|
|
SRC_URI = "file://byte_swap.tcl"
|
|
|
|
RDEPENDS += "tcl-native"
|
|
|
|
inherit native
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|
|
|
|
do_install () {
|
|
install -d ${D}/${bindir}
|
|
install -m 755 ${WORKDIR}/byte_swap.tcl ${D}/${bindir}
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|