blob: 1cb87cd2485522853ef56541b19654fc5eb9afd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require ti-codec.inc
# Should be replaced with real http URL, but for now create codec combo tar from DVSDK installation.
SRC_URI = "http://install.source.dir.local/omapl137_dvsdk_combos_1_0.tar.gz"
S = "${WORKDIR}/omapl137_dvsdk_combos_1_0"
# Yes, the xdc stuff still breaks with a '.' in PWD
PV = "1_0"
PR = "r1"
do_compile() {
echo "do nothing"
}
do_install () {
install -d ${D}/${installdir}/codec-combo
cd ${S}
for file in `find . -name *.${DSPSUFFIX}`; do
cp ${file} ${D}/${installdir}/codec-combo
done
}
|