mirror of
https://git.yoctoproject.org/poky
synced 2026-05-23 11:27:54 +02:00
A lot of our recipes had short one-line DESCRIPTION values and no SUMMARY value set. In this case it's much better to just set SUMMARY since DESCRIPTION is defaulted from SUMMARY anyway and then the SUMMARY is at least useful. I also took the opportunity to fix up a lot of the new SUMMARY values, making them concisely explain the function of the recipe / package where possible. (From OE-Core rev: b8feee3cf21f70ba4ec3b822d2f596d4fc02a292) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
760 B
PHP
25 lines
760 B
PHP
SUMMARY = "Installs required headers for OCF-Linux crypto acceleration support"
|
|
LICENSE = "BSD"
|
|
|
|
LIC_FILES_CHKSUM = "file://README;md5=493ffe65655667614cf24567adf22f11"
|
|
|
|
INC_PR = "r3"
|
|
|
|
SRC_URI = "http://sourceforge.net/projects/ocf-linux/files/ocf-linux/${PV}/ocf-linux-${PV}.tar.gz"
|
|
|
|
S = "${WORKDIR}/ocf-linux-${PV}"
|
|
|
|
# Need to unpack the the ocf-linux.tar.gz file contained inside the
|
|
# downloaded tarball
|
|
# Install the OCF Linux headers so that other packages such as openssl
|
|
# can find them. The headers must be in a crypto directory according to
|
|
# the README file.
|
|
do_install() {
|
|
cd ${S}
|
|
install -d ${D}${includedir}/crypto
|
|
install -m 0644 ${S}/ocf/*.h ${D}${includedir}/crypto/
|
|
}
|
|
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
BBCLASSEXTEND = "native nativesdk"
|