mirror of
https://git.yoctoproject.org/poky
synced 2026-02-25 02:49:40 +01:00
Install the example binary needed for poky-image-clutter. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
14 lines
270 B
PHP
14 lines
270 B
PHP
DESCRIPTION = "Table Clutter Demo"
|
|
HOMEPAGE = "http://www.clutter-project.org/"
|
|
LICENSE = "LGPLv2.1 & GPLv2"
|
|
|
|
DEPENDS = "clutter-gst-1.4 gnome-vfs"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${S}/table ${D}${bindir}/table
|
|
}
|
|
|