summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-lib/libxcb.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/xorg-lib/libxcb.inc')
-rw-r--r--meta/recipes-graphics/xorg-lib/libxcb.inc27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-lib/libxcb.inc b/meta/recipes-graphics/xorg-lib/libxcb.inc
new file mode 100644
index 0000000000..453f5500c3
--- /dev/null
+++ b/meta/recipes-graphics/xorg-lib/libxcb.inc
@@ -0,0 +1,27 @@
1SUMMARY = "XCB: The X protocol C binding library"
2DESCRIPTION = "The X protocol C-language Binding (XCB) is a replacement \
3for Xlib featuring a small footprint, latency hiding, direct access to \
4the protocol, improved threading support, and extensibility."
5HOMEPAGE = "http://xcb.freedesktop.org"
6BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=XCB"
7
8BBCLASSEXTEND = "native nativesdk"
9
10SECTION = "x11/libs"
11LICENSE = "MIT-X"
12
13DEPENDS = "xcb-proto xproto libxau xcb-proto-native libpthread-stubs"
14
15SRC_URI = "http://xcb.freedesktop.org/dist/libxcb-${PV}.tar.bz2 \
16 file://xcbincludedir.patch \
17 file://disable-check.patch"
18
19PACKAGES_DYNAMIC = "^libxcb-.*"
20
21FILES_${PN} = "${libdir}/libxcb.so.*"
22
23inherit autotools pkgconfig pythonnative
24
25python populate_packages_prepend () {
26 do_split_packages(d, '${libdir}', '^libxcb-(.*)\.so\..*$', 'libxcb-%s', 'XCB library module for %s', allow_links=True)
27}