This package will copy the contents of "multimedia.tar.bz2." (Note the dot at the end) to the "/usr/share/multimedia" directory in the target. By replacing the empty default file, you can add your own multimedia files for testing.
Signed-off-by: Ulf Samuelsson <[email protected]> --- recipes/multimedia/multimedia_0.1.bb | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) create mode 100644 recipes/multimedia/multimedia_0.1.bb diff --git a/recipes/multimedia/multimedia_0.1.bb b/recipes/multimedia/multimedia_0.1.bb new file mode 100644 index 0000000..986fd1c --- /dev/null +++ b/recipes/multimedia/multimedia_0.1.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "MultiMedia files" +PR = "r1" + +# This package allows you to add multimedia contents to the file system +# To add this, you create the file "multimedia.tar.bz2." and replace +# the default file included in the openembedded repository. +# Note '.' at end of the filename to avoid decompress by bitbake + +SRC_URI = "\ + file://multimedia.tar.bz2. \ + " + +do_install() { + install -d ${D}/usr/share/multimedia + tar jxvf ${WORKDIR}/multimedia.tar.bz2. -C ${D}/usr/share/multimedia + rm -f ${D}/usr/share/multimedia/.empty +} + +FILES_${PN} = "\ + /usr/share/multimedia/* \ + " + +PACKAGE_ARCH = "${MACHINE_ARCH}" -- 1.6.0.2 _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
