blob: b3166bef673d7a824ab44639413e64f6c1e852b7 (
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
25
26
|
DESCRIPTION = "DM365 Codecs"
BASE_SRC_URI = "http://install.source.dir.local"
SRC_URI = "${BASE_SRC_URI}/dm365_codecs_${PV}.tar.gz"
S = "${WORKDIR}/dm365_codecs_${PV}"
do_compile() {
echo "Do nothing"
}
do_install () {
# install mapdmaq on target
install -d ${D}/${installdir}/codecs
}
do_stage() {
install -d ${CODEC_INSTALL_DIR}
cp -pPrf ${S}/* ${CODEC_INSTALL_DIR}
}
PACKAGE_ARCH = "${MACHINE_ARCH}"
FILES_${PN} = "${installdir}/codecs"
INHIBIT_PACKAGE_STRIP = "1"
INSANE_SKIP_${PN} = True
|