diff options
-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 | } | ||