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