summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmeta-oe/recipes-graphics/wayland/wayland-fits_git.bb33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/wayland/wayland-fits_git.bb b/meta-oe/recipes-graphics/wayland/wayland-fits_git.bb
new file mode 100755
index 0000000000..b74c44a633
--- /dev/null
+++ b/meta-oe/recipes-graphics/wayland/wayland-fits_git.bb
@@ -0,0 +1,33 @@
1SUMMARY = "Wayland-fits, the Wayland Functional Integration Test Suite"
2DESCRIPTION = "Wayland-fits is a fully automated functional integration \
3test suite. Its main purpose is to test the functionality and integration of \
4client-side (i.e. toolkit) and server-side (compositor) implementations of \
5the Wayland protocol."
6HOMEPAGE = "https://github.com/01org/wayland-fits"
7LICENSE = "MIT"
8LIC_FILES_CHKSUM = "file://COPYING;md5=f8d34cadaf891753c0f00c6cd48f08f5 \
9 file://src/extensions/weston/weston-wfits.cpp;endline=21;md5=848c81e55cf3a30a9f6ed75f0dba7a97"
10
11SRC_URI = "git://github.com/01org/wayland-fits.git"
12SRCREV = "f30dfa9fceb438d3687c5215093fffc21a7852fc"
13
14S = "${WORKDIR}/git"
15
16inherit autotools pkgconfig
17
18DEPENDS = "libcheck boost wayland weston"
19RDEPENDS_${PN} = "weston"
20
21EXTRA_OECONF += "--enable-shared --disable-static --with-boost-libdir=${STAGING_LIBDIR}"
22
23PACKAGECONFIG ?= "gtk+3"
24
25PACKAGECONFIG[elementary] = "--enable-efl-tests,--disable-efl-tests,elementary"
26PACKAGECONFIG[gtk+3] = "--enable-gtk-tests,--disable-gtk-tests,gtk+3"
27
28do_install_append() {
29 rm -f ${D}/${libdir}/weston/*.la
30}
31
32FILES_${PN} += "${bindir}/wfits ${libdir}/weston/*.so"
33FILES_${PN}-dbg += "${bindir}/.debug ${libdir}/weston/.debug ${prefix}/src"