mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 09:32:14 +02: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>
21 lines
471 B
PHP
21 lines
471 B
PHP
DESCRIPTION = "Tidy library"
|
|
HOMEPAGE = "http://www.clutter-project.org/"
|
|
LICENSE = "LGPL"
|
|
|
|
STDDEPENDS = "clutter-1.0"
|
|
BASE_CONF = "--disable-gtk-doc"
|
|
|
|
DEPENDS = "${STDDEPENDS}"
|
|
EXTRA_OECONF = "${BASE_CONF}"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
PACKAGES =+ "tidy-examples"
|
|
FILES_tidy-examples = "${bindir}/test-*"
|
|
|
|
do_configure_prepend() {
|
|
touch ${S}/gtk-doc.make
|
|
sed -i s:docs/reference/Makefile::g ${S}/configure.ac
|
|
sed -i s:docs::g ${S}/Makefile.am
|
|
}
|