mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
* Use tar ball release rather than git, as it is more stable. Added dependence on gettext, and one patch to fix the cross-compile failure due to conformance-test. * configure "--with-json=check" avoid extra dependence on external json lib. * rename examples package (clutter-examples-1.x => clutter-1.x-example) to lead the right deploy package name Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
26 lines
735 B
BlitzBasic
26 lines
735 B
BlitzBasic
require clutter.inc
|
|
|
|
PR = "r0"
|
|
|
|
PACKAGES =+ "${PN}-examples"
|
|
FILES_${PN}-examples = "${bindir}/test-* ${pkgdatadir}/redhand.png"
|
|
|
|
SRC_URI = "http://source.clutter-project.org/sources/clutter/1.4/clutter-${PV}.tar.bz2 \
|
|
file://enable_tests-1.4.patch;patch=1 \
|
|
file://test-conformance-fix.patch;patch=1 "
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
|
|
S = "${WORKDIR}/clutter-1.4.2"
|
|
|
|
BASE_CONF += "--disable-introspection"
|
|
|
|
EXTRA_OECONF += "--with-json=check"
|
|
|
|
do_configure_prepend () {
|
|
# Disable DOLT
|
|
sed -i -e 's/^DOLT//' ${S}/configure.ac
|
|
}
|
|
|
|
SRC_URI[md5sum] = "5a3c6d8414d4e286aba0a936f344c9b1"
|
|
SRC_URI[sha256sum] = "92fd67acce5105c933e54ad0c87d0f5ace1202fd0f87949cb49a3759e6e38892"
|