blob: 039417c6267e0de2bd4d2de14dd78b18efa517ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require clutter.inc
SRCREV = "13e055a351f83c56b895b131566a6e842d24ed2a"
PV = "1.1.0"
PR = "${INC_PR}.0"
PR_append = "+git${SRCREV}"
SRC_URI = "git://git.clutter-project.org/clutter.git;protocol=git \
file://enable_tests.patch;patch=1 "
S = "${WORKDIR}/git"
BASE_CONF += "--disable-introspection"
PARALLEL_MAKE = ""
do_compile_prepend() {
for i in $(find ${S} -name Makefile) ; do
sed -i -e s:-Werror::g $i
done
( cd clutter/cogl/gles ; for i in *.glsl ; do sh stringify.sh -h $i ; done )
}
|