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