3a5387acba0ecd826b4715b9ff17aa4feee968d0
[packages.git] / Xorg / xorg / lib / libXcomposite / Makefile
1 #
2 # Copyright (C) 2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=libXcomposite
12 PKG_RELEASE:=2
13 PKG_VERSION:=0.4.0
14
15 PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.4/src/lib/
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
18 PKG_MD5SUM:=7e95395dea89be21bae929b9b7f16641
19 PKG_FIXUP:=libtool
20 PKG_INSTALL:=1
21 PKG_BUILD_DEPENDS:=compositeproto fixesproto
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/libXcomposite
26   SECTION:=xorg-lib
27   CATEGORY:=Xorg
28   SUBMENU:=libraries
29   DEPENDS:=+libX11 +libXfixes +libXext
30   TITLE:=libXcomposite
31   URL:=http://xorg.freedesktop.org/
32 endef
33
34 define Build/InstallDev
35         $(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11/extensions}
36         $(CP) \
37                 $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
38                 $(1)/usr/lib/
39         $(INSTALL_DATA) \
40                 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
41                 $(1)/usr/lib/pkgconfig/
42         $(INSTALL_DATA) \
43                 $(PKG_INSTALL_DIR)/usr/include/X11/extensions/* \
44                 $(1)/usr/include/X11/extensions/
45 endef
46
47 define Package/libXcomposite/install
48         $(INSTALL_DIR) $(1)/usr/lib
49         $(CP) \
50                 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
51                 $(1)/usr/lib/
52 endef
53
54 $(eval $(call BuildPackage,libXcomposite))