summaryrefslogtreecommitdiffstats
path: root/meta-agl-ic-container/recipes-demo/pre-install/pre-install-video-data.bb
blob: e461fd9a1d67278a3d7b5041c654f1748c94d136 (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
27
28
29
30
31
SUMMARY = "Demo video data for AGL demo"
DESCRIPTION = "AGL demo video data aim to show demo information by video."
HOMEPAGE = "https://github.com/agl-ic-eg/ic-demo-video"
SECTION = "Multimedia"
LICENSE = "CC-BY-NC-ND-4.0"
LIC_FILES_CHKSUM = "file://CC-BY-NC-ND-4.0;md5=afe664d64109562c3fa9c309bd7f73bc"

SRC_URI = " \
    git://github.com/agl-ic-eg/ic-demo-video.git;branch=master;protocol=https \
"
SRCREV = "a58624c3e721330d11d389a68c58bfe8f2e05a41"

inherit allarch

S = "${WORKDIR}/git"

INHIBIT_PACKAGE_DEBUG_SPLIT = "1"

do_compile[noexec] = "1"
do_install() {
    install -d ${D}/home/root/Music
    cp ${S}/ic-container-ces2024.mp4 ${D}/home/root/Music/
}

PACKAGES = "\
    ${PN} \
"

FILES:${PN} = " \
    /home/root/Music/* \
"