mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00
Cedartrail: Add new recipes for audio and video samples.
This recipe adds sample Audio files and Video files for testing with pvr Acceleration driver. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
This commit is contained in:
parent
c04eeceda6
commit
f4e857a965
|
@ -0,0 +1,21 @@
|
|||
SUMMARY = "ogg file format music samples"
|
||||
DESCRIPTION = "Installs ogg file format music samples in /home/Music dir"
|
||||
|
||||
LICENSE = "CC-BY-3.0"
|
||||
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/CC-BY-3.0;md5=dfa02b5755629022e267f10b9c0a2ab7"
|
||||
|
||||
PR = "r0"
|
||||
|
||||
SRC_URI = "http://downloads.yoctoproject.org/releases/media/music/ogg-CC-BY-3.0-music-samples-${PV}.tar.bz2 \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "dc3dd4adca69996edaffe8828e1ee165"
|
||||
SRC_URI[sha256sum] = "86381f8474d5ac2c80f54c951a8c22f67d352daa977341d3dfb4161e39ca3975"
|
||||
|
||||
do_install() {
|
||||
|
||||
install -d ${D}${base_prefix}/home/music
|
||||
install -m 0644 ${WORKDIR}/ogg-CC-BY-3.0-music-samples-${PV}/*/*.ogg ${D}${base_prefix}/home/music
|
||||
}
|
||||
|
||||
FILES_${PN} += "${base_prefix}/home/music/*.ogg"
|
|
@ -0,0 +1,22 @@
|
|||
SUMMARY = "Big Buck Bunny video OGG sample "
|
||||
DESCRIPTION = "Installs Big Buck Bunny Video OGG file samples in /home/video dir "
|
||||
|
||||
LICENSE = "CC-BY-3.0"
|
||||
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/CC-BY-3.0;md5=dfa02b5755629022e267f10b9c0a2ab7"
|
||||
|
||||
PR = "r0"
|
||||
|
||||
SRC_URI = "http://blender-mirror.kino3d.org/peach/bigbuckbunny_movies/big_buck_bunny_720p_stereo.ogg \
|
||||
"
|
||||
|
||||
|
||||
SRC_URI[md5sum] = "576424c653da53e31b86c027e55758ae"
|
||||
SRC_URI[sha256sum] = "785b09a585be55f81326a3fcef2cdeeb7ebbc33932b6305fd84209928df67f28"
|
||||
|
||||
do_install() {
|
||||
|
||||
install -d ${D}${base_prefix}/home/Videos
|
||||
install -m 0644 ${WORKDIR}/*.ogg ${D}${base_prefix}/home/Videos
|
||||
}
|
||||
|
||||
FILES_${PN} += "${base_prefix}/home/Videos/*.ogg"
|
Loading…
Reference in New Issue
Block a user