mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
1.0 KiB
BlitzBasic
25 lines
1.0 KiB
BlitzBasic
SUMMARY = "Common files and packaging infrastructure for CT-API modules"
|
|
HOMEPAGE = "http://fedoraproject.org/"
|
|
SECTION = "System Environment/Libraries"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${UNPACKDIR}/ctapi-common.LICENSE;md5=8744cd52545ecb45befebd0da6f70f0a"
|
|
|
|
SRC_URI = "https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.LICENSE \
|
|
https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.README"
|
|
SRC_URI[sha256sum] = "87a74eb0a66055c34ba2c5c919e74f3211c5950ae1c2cbab967fdf4137f5de91"
|
|
|
|
S = "${UNPACKDIR}"
|
|
|
|
do_compile() {
|
|
install -pm 644 ${UNPACKDIR}/ctapi-common.LICENSE LICENSE
|
|
install -pm 644 ${UNPACKDIR}/ctapi-common.README README
|
|
echo ${libdir}/ctapi > ctapi.conf
|
|
}
|
|
|
|
do_install() {
|
|
install -Dpm 644 ctapi.conf ${D}${sysconfdir}/ld.so.conf.d/ctapi-${TARGET_ARCH}.conf
|
|
install -dm 755 ${D}${libdir}/ctapi
|
|
}
|
|
|
|
FILES:${PN} += "${libdir}/ctapi"
|