mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 07:37:14 +00:00
450940b3a6
This provides a recipe to install the movies in the rootfs; these allow for people to make demo images which carry the movies for show. These recipes are based on Angstrom ones. Thanks by their base work. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
17 lines
601 B
BlitzBasic
17 lines
601 B
BlitzBasic
DESCRIPTION = "Big Buck Bunny movie - 720P"
|
|
LICENSE = "CC-BY"
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/big_buck_bunny_720p_surround.avi;md5=0da8fe124595f5b206d64cb1400bbefc"
|
|
|
|
SRC_URI = "http://download.blender.org/peach/bigbuckbunny_movies/big_buck_bunny_720p_surround.avi"
|
|
SRC_URI[md5sum] = "0da8fe124595f5b206d64cb1400bbefc"
|
|
SRC_URI[sha256sum] = "b957d6e6212638441b52d3b620af157cc8d40c2a0342669294854a06edcd528c"
|
|
|
|
inherit allarch
|
|
|
|
do_install() {
|
|
install -d ${D}${datadir}/movies
|
|
install -m 0644 ${WORKDIR}/big_buck_bunny_720p_surround.avi ${D}${datadir}/movies/
|
|
}
|
|
|
|
FILES_${PN} += "${datadir}/movies"
|