mirror of
https://git.yoctoproject.org/poky
synced 2026-03-02 05:19:40 +01:00
This is the next stage of recipe reorganization, in this stage many recipes where moved to a new meta-demoapps layer since this is more appropriate for demo usage then the core. Additional some recipes were moved to meta-extras to indicate they may be depercated at a future time. A number of recipes were modified since dependencies need to be corrected. Signed-off-by: Saul Wold <Saul.Wold@intel.com>
16 lines
357 B
PHP
16 lines
357 B
PHP
DESCRIPTION = "Clutter Box2D"
|
|
HOMEPAGE = "http://www.clutter-project.org/"
|
|
LICENSE = "GPLv2"
|
|
|
|
DEPENDS = "clutter-1.0"
|
|
|
|
# The main clutter lib is machine specific so we need to be too
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
inherit autotools pkgconfig gtk-doc
|
|
|
|
do_install_append () {
|
|
install -d ${D}${bindir}
|
|
install ${S}/examples/.libs/blockbox ${D}${bindir}
|
|
}
|