diff options
author | Kishore Bodke <kishore.k.bodke@intel.com> | 2012-09-19 15:34:45 -0700 |
---|---|---|
committer | Tom Zanussi <tom.zanussi@intel.com> | 2012-09-25 23:23:25 -0500 |
commit | c0242a374d55d5b2207e2f75749cfe9c177a7876 (patch) | |
tree | f64e3c9325f8bc6a29febfe75bc464f1e049f14f /meta-crystalforest/recipes-corpus | |
parent | 91f82d8c1e255e3c5db8132e116f94a14a9301c0 (diff) | |
download | meta-intel-c0242a374d55d5b2207e2f75749cfe9c177a7876.tar.gz |
meta-crystalforest: Add Silesia Corpus recipe.
Add a new recipe Silesia Corpus for testing with another
Data Compression algorithm for Crystal Forest BSP.
Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
Diffstat (limited to 'meta-crystalforest/recipes-corpus')
-rw-r--r-- | meta-crystalforest/recipes-corpus/silesia-corpus/silesia-corpus.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-crystalforest/recipes-corpus/silesia-corpus/silesia-corpus.bb b/meta-crystalforest/recipes-corpus/silesia-corpus/silesia-corpus.bb new file mode 100644 index 00000000..28bc3753 --- /dev/null +++ b/meta-crystalforest/recipes-corpus/silesia-corpus/silesia-corpus.bb | |||
@@ -0,0 +1,32 @@ | |||
1 | SUMMARY = "The Data Compression Resource on the Internet" | ||
2 | DESCRIPTION = "The intention of the Silesia corpus is to provide a data set of files \ | ||
3 | that covers the typical data types used nowadays. \ | ||
4 | The sizes of the files are between 6 MB and 51 MB." | ||
5 | |||
6 | HOMEPAGE = "http://www.data-compression.info/index.htm" | ||
7 | SECTION = "misc" | ||
8 | LICENSE = "GPLv2" | ||
9 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" | ||
10 | |||
11 | PR="r0" | ||
12 | |||
13 | S = "${WORKDIR}/silesia-corpus" | ||
14 | |||
15 | SRC_URI = "http://sun.aei.polsl.pl/~sdeor/corpus/silesia.zip" | ||
16 | |||
17 | SRC_URI[md5sum] = "c240c17d6805fb8a0bde763f1b94cd99" | ||
18 | SRC_URI[sha256sum] = "0626e25f45c0ffb5dc801f13b7c82a3b75743ba07e3a71835a41e3d9f63c77af" | ||
19 | |||
20 | do_unpack () { | ||
21 | mkdir -p ${S} | ||
22 | cp ${DL_DIR}/silesia.zip ${S} | ||
23 | cd ${S} && unzip silesia.zip | ||
24 | } | ||
25 | |||
26 | do_install () { | ||
27 | |||
28 | install -d ${D}${base_libdir}/firmware | ||
29 | install -m 664 ${S}/* ${D}${base_libdir}/firmware | ||
30 | } | ||
31 | |||
32 | FILES_${PN} = "/lib/firmware/*" | ||