diff options
author | Todd Fischer <[todd.fischer@ridgerun.com]> | 2010-06-05 12:16:44 -0500 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-06-06 09:52:45 +0200 |
commit | 4ea675dde999bf4b4b789606f08179ffb33f7565 (patch) | |
tree | 38439bc8a42fdcffe8594dc57ba6729792e0318f | |
parent | e0f42d7bd24b64236a8f1bf7a1e3184c78f7e034 (diff) | |
download | openembedded-4ea675dde999bf4b4b789606f08179ffb33f7565.tar.gz |
Media files to include on the Embedded Systems Conference workshop
-rw-r--r-- | recipes/esc-media/esc-media.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/esc-media/esc-media.bb b/recipes/esc-media/esc-media.bb new file mode 100644 index 0000000000..7be9a6403c --- /dev/null +++ b/recipes/esc-media/esc-media.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Media files to include on the Embedded Systems Conference workshop" +LICENSE="Various" + +SRC_URI = "http://hivelocity.dl.sourceforge.net/project/showoff/esc_media_files.tar.gz" +SRC_URI[md5sum] = "b75cbc0ce0dfcbd85de12e7fe9ecab8b" +SRC_URI[sha256sum] = "364f474a6356326c113d964885207d90741f2e95770b079d96fffc4295e62739" + +PV=4 + +FILES_${PN} += "${datadir}/esc-media" +S=${WORKDIR}/esc_media_files + +inherit base + +do_install() { + ESC_MEDIA="2009-obama-congress-speech.avi AlphaAnimal.license \ + AlphaAnimal.m4a BigBuckBunny_640x360.m4v bbb.flac \ + bbb.mp3 bbb.ogg davincieffect.aac gstreamer-logo.svg \ + sprc720.flv" + + install -d ${D}${datadir}/esc-media + for F in ${ESC_MEDIA} ; do + install -m 0644 ${S}/${F} ${D}${datadir}/esc-media + done +} |