diff options
| author | Kishore Bodke <kishore.k.bodke@intel.com> | 2012-09-19 15:30:04 -0700 |
|---|---|---|
| committer | Tom Zanussi <tom.zanussi@intel.com> | 2012-09-25 23:23:25 -0500 |
| commit | 91f82d8c1e255e3c5db8132e116f94a14a9301c0 (patch) | |
| tree | 7c0d917631e839b7a6e3dd4700f0df7218e10691 /meta-crystalforest | |
| parent | 9bad3a4e3cd485b7746db3c23eaa3307c56374cf (diff) | |
| download | meta-intel-91f82d8c1e255e3c5db8132e116f94a14a9301c0.tar.gz | |
meta-crystalforest: Add Canterbury Corpus recipe.
Add a new recipe for Crystal Forest BSP for testing
the lossless compresstion algorithms with Canterbury Corpus.
Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
Diffstat (limited to 'meta-crystalforest')
| -rw-r--r-- | meta-crystalforest/recipes-corpus/canterbury-corpus/canterbury-corpus.bb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-crystalforest/recipes-corpus/canterbury-corpus/canterbury-corpus.bb b/meta-crystalforest/recipes-corpus/canterbury-corpus/canterbury-corpus.bb new file mode 100644 index 00000000..6dfdef20 --- /dev/null +++ b/meta-crystalforest/recipes-corpus/canterbury-corpus/canterbury-corpus.bb | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | SUMMARY = "Intel Quick Assist Driver - Canterbury Corpus" | ||
| 2 | DESCRIPTION = "Set of files for testing losless compression algorithms \ | ||
| 3 | for Intel Crystal Forest BSP Quick Assist Technology Software Package" | ||
| 4 | |||
| 5 | HOMEPAGE = "http://corpus.canterbury.ac.nz" | ||
| 6 | SECTION = "misc" | ||
| 7 | LICENSE = "GPLv2" | ||
| 8 | |||
| 9 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" | ||
| 10 | |||
| 11 | PR = "r0" | ||
| 12 | |||
| 13 | S = "${WORKDIR}/canterbury-corpus" | ||
| 14 | |||
| 15 | SRC_URI = "http://corpus.canterbury.ac.nz/resources/cantrbry.tar.gz" | ||
| 16 | |||
| 17 | SRC_URI[md5sum] = "442e56cfffdf460d25b0b91650a55908" | ||
| 18 | SRC_URI[sha256sum] = "f140e8a5b73d3f53198555a63bfb827889394a42f20825df33c810c3d5e3f8fb" | ||
| 19 | |||
| 20 | WARN_QA += "arch" | ||
| 21 | |||
| 22 | ERROR_QA = "" | ||
| 23 | |||
| 24 | do_package_qa[noexec] = "1" | ||
| 25 | |||
| 26 | do_unpack () { | ||
| 27 | |||
| 28 | mkdir -p ${S} | ||
| 29 | tar -xf ${DL_DIR}/cantrbry.tar.gz -C ${S} | ||
| 30 | |||
| 31 | } | ||
| 32 | |||
| 33 | FILES_${PN} = "/lib/firmware/*" | ||
| 34 | |||
| 35 | do_install () { | ||
| 36 | |||
| 37 | install -d ${D}${base_libdir}/firmware | ||
| 38 | install -m 644 ${S}/* ${D}${base_libdir}/firmware | ||
| 39 | |||
| 40 | } | ||
