diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-10-10 19:55:16 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-10-10 19:55:16 +0200 |
commit | 9278fe715d5eebd16af1a2d20a92255744913dbb (patch) | |
tree | 23fa7944d90227d3e53a2a6214acdaae95f4cef9 /meta-oe/recipes-devtools/tasks/task-sdk-target.bb | |
parent | 2b5f1a5e0c627d49d37d5eac2179c552e85d1c1a (diff) | |
download | meta-openembedded-9278fe715d5eebd16af1a2d20a92255744913dbb.tar.gz |
task-sdk-target: initial add - meant to be what task-sdk-native is in OE classic
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-devtools/tasks/task-sdk-target.bb')
-rw-r--r-- | meta-oe/recipes-devtools/tasks/task-sdk-target.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/tasks/task-sdk-target.bb b/meta-oe/recipes-devtools/tasks/task-sdk-target.bb new file mode 100644 index 000000000..03141f2d1 --- /dev/null +++ b/meta-oe/recipes-devtools/tasks/task-sdk-target.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | DESCRIPTION = "Packages required for a target (on-device) SDK" | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" | ||
4 | |||
5 | inherit task allarch | ||
6 | |||
7 | RPROVIDES_${PN} = "task-native-sdk" | ||
8 | RDEPENDS_${PN} = "gcc-symlinks g++-symlinks cpp cpp-symlinks \ | ||
9 | binutils-symlinks \ | ||
10 | perl-modules \ | ||
11 | flex flex-dev \ | ||
12 | bison \ | ||
13 | gawk \ | ||
14 | sed \ | ||
15 | grep \ | ||
16 | autoconf automake \ | ||
17 | make \ | ||
18 | patch diffstat diffutils \ | ||
19 | libstdc++-dev \ | ||
20 | libtool libtool-dev libltdl-dev \ | ||
21 | pkgconfig" | ||
22 | |||
23 | # usefull, but not in oe-core/meta-oe yet: patchutils | ||
24 | RRECOMMENDS_${PN} = " g77-symlinks gfortran-symlinks" | ||