mirror of
https://git.yoctoproject.org/poky
synced 2026-03-03 22:09:39 +01:00
Since package groups don't actually fetch or distribute anything and we no longer run do_configure we don't need to set this variable anymore. (From OE-Core rev: 4c511f77e38cbc9d8d633fef3b1ab4cf93440258) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
40 lines
666 B
BlitzBasic
40 lines
666 B
BlitzBasic
#
|
|
# Copyright (C) 2008 OpenedHand Ltd.
|
|
#
|
|
|
|
DESCRIPTION = "Test apps task for OE-Core"
|
|
LICENSE = "MIT"
|
|
|
|
inherit packagegroup
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
# kexec-tools doesn't work on Mips
|
|
KEXECTOOLS ?= "kexec"
|
|
KEXECTOOLS_mips ?= ""
|
|
KEXECTOOLS_mipsel ?= ""
|
|
KEXECTOOLS_powerpc ?= ""
|
|
KEXECTOOLS_e5500-64b ?= ""
|
|
|
|
RDEPENDS_${PN} = "\
|
|
blktool \
|
|
fstests \
|
|
tslib-calibrate \
|
|
tslib-tests \
|
|
lrzsz \
|
|
${KEXECTOOLS} \
|
|
alsa-utils-amixer \
|
|
alsa-utils-aplay \
|
|
owl-video \
|
|
gst-meta-video \
|
|
gst-meta-audio \
|
|
mesa-demos \
|
|
x11perf \
|
|
xrestop \
|
|
xwininfo \
|
|
xprop \
|
|
xvideo-tests \
|
|
clutter-box2d \
|
|
ltp \
|
|
"
|