jow 0896528d0e [packages] remove PKG_REMOVE_FILES directives that are covered by the default fixup
git-svn-id: svn://svn.openwrt.org/openwrt/packages@24461 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-12-10 23:09:58 +00:00

56 lines
1.2 KiB
Makefile

#
# Copyright (C) 2007-2010 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:=libxkbfile
PKG_RELEASE:=1
PKG_VERSION:=1.0.6
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:=b01156e263eca8177e6b7f10441951c4
PKG_FIXUP:=libtool
PKG_INSTALL:=1
PKG_BUILD_DEPENDS:=kbproto
include $(INCLUDE_DIR)/package.mk
define Package/libxkbfile
SECTION:=xorg-libraries
CATEGORY:=Xorg
SUBMENU:=libraries
DEPENDS:=+libX11
TITLE:=libxkbfile
URL:=http://xorg.freedesktop.org/
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11/extensions}
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
$(1)/usr/lib/
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
$(1)/usr/lib/pkgconfig/
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/include/X11/extensions/* \
$(1)/usr/include/X11/extensions/
endef
define Package/libxkbfile/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
$(1)/usr/lib/
endef
$(eval $(call BuildPackage,libxkbfile))