-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdvrgenericheaders_git.bb
More file actions
26 lines (18 loc) · 899 Bytes
/
dvrgenericheaders_git.bb
File metadata and controls
26 lines (18 loc) · 899 Bytes
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
SUMMARY = "This recipe compiles DVR code base. This has interface classes that would be necessary for all the media players."
SECTION = "console/utils"
LICENSE = "RDK"
LIC_FILES_CHKSUM = "file://${COREBASE}/../meta-rdk-restricted/licenses/RDK;md5=ba986f8eaa991d86ab2ab6f837701a5f"
PV = "${RDK_RELEASE}+git${SRCPV}"
SRCREV = "${AUTOREV}"
SRC_URI = "${CMF_GIT_ROOT}/components/generic/dvr;protocol=${CMF_GIT_PROTOCOL};branch=${CMF_GIT_BRANCH};name=dvrmgr"
S = "${WORKDIR}/git"
do_compile[noexec] = "1"
do_install() {
install -d ${D}${includedir}
install -m 0644 ${S}/dvr/common/dvrmgr/*.h ${D}${includedir}
install -m 0644 ${S}/dvr/common/sharedtsb/*.h ${D}${includedir}
install -m 0644 ${S}/dvr/common/tasseograph/*.h ${D}${includedir}
install -m 0644 ${S}/dvr/sink/*.h ${D}${includedir}
install -m 0644 ${S}/dvr/source/*.h ${D}${includedir}
}
ALLOW_EMPTY_${PN} = "1"