mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-08-15 17:28:04 +02:00
* fix unfetchable SRC_URI and use git fetcher instead
* and remove checksums file
* adapt ${S}
* fix QA about non -staticdev package contains static .a library
* fix QA about /bin installed but not shipped
* fix license and relative QA
* bump INC_PR
* patchset untouched awaiting klibc_2.0, expected in March 2012
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
33 lines
995 B
BlitzBasic
33 lines
995 B
BlitzBasic
PR = "${INC_PR}.0"
|
|
|
|
export INST = "${D}"
|
|
|
|
do_install() {
|
|
|
|
oe_runmake install
|
|
|
|
# the crosscompiler is packaged by klcc-cross
|
|
# remove klcc
|
|
rm ${D}${base_bindir}/klcc
|
|
# remove now empty dir
|
|
rmdir ${D}${base_bindir}
|
|
|
|
# remove Linux headers .install and ..install.cmd files
|
|
find ${D}${base_libdir}/klibc/include -name '.install' -delete
|
|
find ${D}${base_libdir}/klibc/include -name '..install.cmd' -delete
|
|
|
|
install -d ${D}${base_libdir}
|
|
install -m 755 usr/klibc/klibc-*.so ${D}${base_libdir}
|
|
(cd ${D}${base_libdir}; ln -s klibc-*.so klibc.so)
|
|
|
|
}
|
|
|
|
PACKAGES = "libklibc libklibc-staticdev libklibc-dev"
|
|
FILES_libklibc = "${base_libdir}/klibc-*.so"
|
|
FILES_libklibc-staticdev = "${base_libdir}/klibc/lib/libc.a"
|
|
FILES_libklibc-dev = "${base_libdir}/klibc.so \
|
|
${base_libdir}/klibc/lib/* \
|
|
${base_libdir}/klibc/include/* \
|
|
"
|
|
require klibc.inc
|