blob: c52f697313004cdac1f0ff95f27d8a48d681d005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
DESCRIPTION = "Framework Components for TI ARM/DSP processors"
SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/fc/${PV}/exports/framework_components_${PV},lite.tar.gz;name=fctarball"
require ti-paths.inc
require ti-staging.inc
S = "${WORKDIR}/framework_components_${PV}"
# compile time dependencies
DEPENDS += "ti-xdctools ti-xdais ti-linuxutils"
do_compile () {
echo "! Do not rebuild for now !"
}
# stage tree - other packages may need this
do_install() {
install -d ${D}${FC_INSTALL_DIR_RECIPE}
cp -pPrf ${S}/* ${D}${FC_INSTALL_DIR_RECIPE}
}
PACKAGE_ARCH = "${MACHINE_ARCH}"
INHIBIT_PACKAGE_STRIP = "1"
|