blob: 724e5b65ead3369c56956ebd18cbb9dbd61873e2 (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#
# Copyright (C) 2008-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=xcb-proto
PKG_VERSION:=1.3
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://xcb.freedesktop.org/dist/
PKG_MD5SUM:=d9275a714e83ab9c1f9b260c6eff1609
PKG_INSTALL:=1
#PKG_BUILD_DEPENDS:=python-mini/host
include $(INCLUDE_DIR)/package.mk
#$(call include_mk, python-package.mk)
#STAMP_CONFIGURED:=$(STAMP_CONFIGURED)_$(call confvar,PACKAGE_python PACKAGE_python-mini)
define Package/xcbproto
SECTION:=xorg-libraries
CATEGORY:=Xorg
SUBMENU:=libraries
BUILDONLY:=1
TITLE:=xcbproto
URL:=http://xcb.freedesktop.org/
endef
#define InstallPy
# $(INSTALL_DIR) $(1)/host/lib/$(PYTHON)/site-packages/xcbgen
# $(INSTALL_DATA) \
# $(PKG_INSTALL_DIR)/usr/lib/$(PYTHON)/site-packages/xcbgen/*.py \
# $(1)/host/lib/$(PYTHON)/site-packages/xcbgen/
#endef
define Build/InstallDev
# $(call InstallPy,$(1),$(2))
$(INSTALL_DIR) \
$(1)/usr/lib/pkgconfig \
$(1)/host/share/xcb
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/share/xcb/* \
$(1)/host/share/xcb/
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
$(1)/usr/lib/pkgconfig/
$(SED) 's,datadir=/usr,datadir=$(STAGING_DIR)/host,g' $(1)/usr/lib/pkgconfig/xcb-proto.pc
endef
$(eval $(call BuildPackage,xcbproto))
|