mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
4c9740b5a8
* 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
592 B
BlitzBasic
33 lines
592 B
BlitzBasic
PR = "${INC_PR}.0"
|
|
|
|
require klibc.inc
|
|
|
|
export KLCC_INST = "${STAGING_DIR_TARGET}/lib/klibc"
|
|
|
|
SRC_URI += "file://klcc_prefix.patch \
|
|
file://use-env-for-perl.patch"
|
|
|
|
DEPENDS = "klibc"
|
|
|
|
FILESPATH =. "${FILE_DIRNAME}/klibc-${PV}:"
|
|
|
|
# ${TARGET_PREFIX}klcc is just a
|
|
# perl wrapper around gcc-cross
|
|
# so give it the same arch and path
|
|
PACKAGE_ARCH = "${TUNE_PKGARCH}"
|
|
|
|
inherit cross
|
|
|
|
do_configure () {
|
|
:
|
|
}
|
|
|
|
do_compile() {
|
|
oe_runmake klcc
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${base_bindir}
|
|
install -m 0755 klcc/klcc ${D}${base_bindir}/${TARGET_PREFIX}klcc
|
|
}
|