mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 21:09:03 +02:00
meta-intel/common: Add Corpus recipes to common
Moved corpus recipes to common as this will be used by multiple BSPs. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
This commit is contained in:
parent
aa88280058
commit
303b525328
25
common/recipes-corpus/calgary-corpus/calgary-corpus.bb
Normal file
25
common/recipes-corpus/calgary-corpus/calgary-corpus.bb
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
SUMMARY = "Set of files for testing losless compression algorithms"
|
||||||
|
DESCRIPTION = "Set of files for testing losless compression algorithms"
|
||||||
|
HOMEPAGE = "http://corpus.canterbury.ac.nz"
|
||||||
|
SECTION = "misc"
|
||||||
|
LICENSE = "GPLv2"
|
||||||
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
|
||||||
|
|
||||||
|
S = "${WORKDIR}/corpus"
|
||||||
|
|
||||||
|
SRC_URI = "http://corpus.canterbury.ac.nz/resources/calgary.tar.gz"
|
||||||
|
|
||||||
|
SRC_URI[md5sum] = "651d06b35d3d39522157cf8dc4a3d01c"
|
||||||
|
SRC_URI[sha256sum] = "e109eebdc19c5cee533c58bd6a49a4be3a77cc52f84ba234a089148a4f2093b7"
|
||||||
|
|
||||||
|
do_unpack () {
|
||||||
|
mkdir -p ${S}
|
||||||
|
tar -xf ${DL_DIR}/calgary.tar.gz -C ${WORKDIR}/corpus
|
||||||
|
}
|
||||||
|
|
||||||
|
FILES_${PN} = "/lib/firmware/*"
|
||||||
|
|
||||||
|
do_install () {
|
||||||
|
install -d ${D}/lib/firmware
|
||||||
|
install -m 664 ${S}/* ${D}/lib/firmware
|
||||||
|
}
|
35
common/recipes-corpus/canterbury-corpus/canterbury-corpus.bb
Normal file
35
common/recipes-corpus/canterbury-corpus/canterbury-corpus.bb
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
SUMMARY = "Intel Quick Assist Driver - Canterbury Corpus"
|
||||||
|
DESCRIPTION = "Set of files for testing losless compression algorithms \
|
||||||
|
for Intel Crystal Forest BSP Quick Assist Technology Software Package"
|
||||||
|
|
||||||
|
HOMEPAGE = "http://corpus.canterbury.ac.nz"
|
||||||
|
SECTION = "misc"
|
||||||
|
LICENSE = "GPLv2"
|
||||||
|
|
||||||
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
|
||||||
|
|
||||||
|
PR = "r0"
|
||||||
|
|
||||||
|
S = "${WORKDIR}/canterbury-corpus"
|
||||||
|
|
||||||
|
SRC_URI = "http://corpus.canterbury.ac.nz/resources/cantrbry.tar.gz"
|
||||||
|
|
||||||
|
SRC_URI[md5sum] = "442e56cfffdf460d25b0b91650a55908"
|
||||||
|
SRC_URI[sha256sum] = "f140e8a5b73d3f53198555a63bfb827889394a42f20825df33c810c3d5e3f8fb"
|
||||||
|
|
||||||
|
WARN_QA += "arch"
|
||||||
|
ERROR_QA = ""
|
||||||
|
|
||||||
|
do_package_qa[noexec] = "1"
|
||||||
|
|
||||||
|
do_unpack () {
|
||||||
|
mkdir -p ${S}
|
||||||
|
tar -xf ${DL_DIR}/cantrbry.tar.gz -C ${S}
|
||||||
|
}
|
||||||
|
|
||||||
|
FILES_${PN} = "/lib/firmware/*"
|
||||||
|
|
||||||
|
do_install () {
|
||||||
|
install -d ${D}${base_libdir}/firmware
|
||||||
|
install -m 644 ${S}/* ${D}${base_libdir}/firmware
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user