0d01da70d22adcfbbb00e17ba3d8358167020509
[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 PKG_REMOVE_FILES:=aclocal.m4 ltmain.sh
22
23 PKG_INSTALL:=1
24 PKG_BUILD_DEPENDS:=xproto fixesproto xextproto
25
26 include $(INCLUDE_DIR)/package.mk
27
28 define Package/libXfixes
29 SECTION:=xorg-libraries
30 CATEGORY:=Xorg
31 SUBMENU:=libraries
32 DEPENDS:=+libX11
33 TITLE:=libXfixes
34 URL:=http://xorg.freedesktop.org/
35 endef
36
37 define Build/InstallDev
38 $(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11/extensions}
39 $(CP) \
40 $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
41 $(1)/usr/lib/
42 $(INSTALL_DATA) \
43 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
44 $(1)/usr/lib/pkgconfig/
45 $(INSTALL_DATA) \
46 $(PKG_INSTALL_DIR)/usr/include/X11/extensions/* \
47 $(1)/usr/include/X11/extensions/
48 endef
49
50 define Package/libXfixes/install
51 $(INSTALL_DIR) $(1)/usr/lib
52 $(CP) \
53 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
54 $(1)/usr/lib/
55 endef
56
57 $(eval $(call BuildPackage,libXfixes))