6af04d49d1
SVN-Revision: 30017
62 lines
1.4 KiB
Makefile
62 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2007-2009 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:=libXi
|
|
PKG_RELEASE:=1
|
|
PKG_VERSION:=1.3
|
|
|
|
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/individual/lib/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/Xorg/$(PKG_NAME)-$(PKG_VERSION)/
|
|
PKG_MD5SUM:=8df4ece9bd1efb02c28acb2b6f485e09
|
|
|
|
PKG_FIXUP:=libtool
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_DEPENDS:=xproto xextproto inputproto
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libXi
|
|
SECTION:=xorg-libraries
|
|
CATEGORY:=Xorg
|
|
SUBMENU:=libraries
|
|
DEPENDS:=+libX11 +libXext
|
|
TITLE:=libXi
|
|
URL:=http://xorg.freedesktop.org/
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default, --enable-malloc0returnsnull)
|
|
endef
|
|
|
|
define Package/libXi/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/libXi.so* \
|
|
$(1)/usr/lib/
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/libXi.{so*,a,la} \
|
|
$(1)/usr/lib/
|
|
|
|
$(INSTALL_DATA) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
|
|
$(1)/usr/lib/pkgconfig/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include/X11/extensions
|
|
$(INSTALL_DATA) \
|
|
$(PKG_INSTALL_DIR)/usr/include/X11/extensions/* \
|
|
$(1)/usr/include/X11/extensions/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libXi))
|