mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-01-12 01:20:20 +00:00
Legacy platforms AM3/4/5/J6 build components for multimedia acceleration and other DSP showcasing using SYS/BIOS, XDC, XDAIS, CodeGen Tools and different DSP libraries. Move all of them to meta-ti-extras. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
26 lines
828 B
PHP
26 lines
828 B
PHP
DESCRIPTION = "TI eXpress DSP Algorithm Interface Standard (XDAIS) specification"
|
|
HOMEPAGE = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/xdais"
|
|
LICENSE = "GPLv2"
|
|
SECTION = "devel"
|
|
|
|
require ../includes/ti-paths.inc
|
|
require ../includes/ti-staging.inc
|
|
|
|
S = "${WORKDIR}/xdais_${PV}"
|
|
|
|
SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/xdais/${PV}/exports/xdais_${PV}.tar.gz;name=xdaistarball"
|
|
|
|
do_install() {
|
|
CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
|
|
install -d ${D}${XDAIS_INSTALL_DIR_RECIPE}
|
|
cp ${CP_ARGS} ${S}/* ${D}${XDAIS_INSTALL_DIR_RECIPE}
|
|
}
|
|
|
|
INHIBIT_PACKAGE_STRIP = "1"
|
|
INHIBIT_SYSROOT_STRIP = "1"
|
|
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
|
|
INSANE_SKIP:${PN}-dev = "arch"
|
|
|
|
ALLOW_EMPTY:${PN} = "1"
|
|
FILES:${PN}-dev += "${XDAIS_INSTALL_DIR_RECIPE}"
|