blob: 3741c4d44872a98142cfac374c1b37703083fbdc (
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
|
DESCRIPTION = "Demo scripts to run common usecases involving VCU in ZynqMP"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=17e31b2e971eed6471a361c7dc4faa18"
require gstreamer-multimedia-notebooks_0.1.inc
S = "${WORKDIR}/git"
inherit features_check
REQUIRED_MACHINE_FEATURES = "vcu"
PACKAGE_ARCH = "${MACHINE_ARCH}"
RDEPENDS:${PN} = "gstreamer1.0-omx gstreamer1.0-plugins-bad bash python3-pip alsa-utils matchbox-desktop"
EXTRA_OEMAKE = 'D=${D} bindir=${bindir} datadir=${datadir}'
do_install() {
oe_runmake -C ${S}/vcu install_vcu_examples
}
# These libraries shouldn't get installed in world builds unless something
# explicitly depends upon them.
EXCLUDE_FROM_WORLD = "1"
|