mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 05:03:03 +01:00
- It removes the 0.4 recipes. - It renames things so that the major.minor revision is now part of the package name. This lets us correctly specify SRCREVs for each branch, and allows parallell install. - All the SRCREVs have been updated to the heads of their corresponding branches git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5384 311d38ba-8fff-0310-9ca6-ca027cbcb966
20 lines
402 B
PHP
20 lines
402 B
PHP
DESCRIPTION = "Clutter Box2D"
|
|
HOMEPAGE = "http://www.clutter-project.org/"
|
|
LICENSE = "GPLv2"
|
|
|
|
DEPENDS = "clutter-0.8"
|
|
|
|
# The main clutter lib is machine specific so we need to be too
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
inherit autotools pkgconfig gtk-doc
|
|
|
|
do_stage () {
|
|
autotools_stage_all
|
|
}
|
|
|
|
do_install_append () {
|
|
install -d ${D}${bindir}
|
|
install ${S}/examples/.libs/blockbox ${D}${bindir}
|
|
}
|