mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-16 02:50:49 +00:00
packagegroup bbclass already takes care of this Signed-off-by: Andrea Galbusera <gizero@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
29 lines
924 B
BlitzBasic
29 lines
924 B
BlitzBasic
SUMMARY = "Packages required for a target (on-device) SDK"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
PR = "r1"
|
|
|
|
inherit packagegroup
|
|
|
|
RPROVIDES_${PN} += "packagegroup-native-sdk"
|
|
RREPLACES_${PN} += "packagegroup-native-sdk"
|
|
RCONFLICTS_${PN} += "packagegroup-native-sdk"
|
|
RDEPENDS_${PN} = "gcc-symlinks g++-symlinks cpp cpp-symlinks \
|
|
binutils-symlinks \
|
|
perl-modules \
|
|
flex flex-dev \
|
|
bison \
|
|
gawk \
|
|
sed \
|
|
grep \
|
|
autoconf automake \
|
|
make \
|
|
patch diffstat diffutils \
|
|
libstdc++-dev \
|
|
libtool libtool-dev \
|
|
pkgconfig"
|
|
|
|
# usefull, but not in oe-core/meta-oe yet: patchutils
|
|
RRECOMMENDS_${PN} = " g77-symlinks gfortran-symlinks"
|