Blame view

buildroot/buildroot-2016.08.1/package/x11r7/xcb-proto/xcb-proto.mk 941 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  ################################################################################
  #
  # xcb-proto
  #
  ################################################################################
  
  XCB_PROTO_VERSION = 1.12
  XCB_PROTO_SOURCE = xcb-proto-$(XCB_PROTO_VERSION).tar.bz2
  XCB_PROTO_SITE = http://xcb.freedesktop.org/dist
  XCB_PROTO_LICENSE = MIT
  XCB_PROTO_LICENSE_FILES = COPYING
  
  XCB_PROTO_INSTALL_STAGING = YES
  
  XCB_PROTO_DEPENDENCIES = host-python
  HOST_XCB_PROTO_DEPENDENCIES = host-python
  
  # xcbincludedir/pythondir is used by E.G. libxcb at build time to find the
  # xml / python files, so ensure these expand to their full (host) paths
  define XCB_PROTO_FIXUP_PC_FILE
  	$(SED) 's|^\(xcbincludedir=\)|\1$(STAGING_DIR)|' \
  		-e 's|^\(pythondir=\)|\1$(STAGING_DIR)|' \
  		$(STAGING_DIR)/usr/lib/pkgconfig/xcb-proto.pc
  endef
  
  XCB_PROTO_POST_INSTALL_STAGING_HOOKS += XCB_PROTO_FIXUP_PC_FILE
  
  $(eval $(autotools-package))
  $(eval $(host-autotools-package))