add packages_10.03.2 in preparation for the 10.03.2 interim release
[10.03/packages.git] / Xorg / xorg / lib / libxkbfile / 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libxkbfile
11 PKG_RELEASE:=1
12 PKG_VERSION:=1.0.6
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:=b01156e263eca8177e6b7f10441951c4
18
19 PKG_FIXUP:=libtool
20
21 PKG_INSTALL:=1
22 PKG_BUILD_DEPENDS:=kbproto
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/libxkbfile
27   SECTION:=xorg-libraries
28   CATEGORY:=Xorg
29   SUBMENU:=libraries
30   DEPENDS:=+libX11
31   TITLE:=libxkbfile
32   URL:=http://xorg.freedesktop.org/
33 endef
34
35 define Build/InstallDev
36         $(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11/extensions}
37         $(CP) \
38                 $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
39                 $(1)/usr/lib/
40         $(INSTALL_DATA) \
41                 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
42                 $(1)/usr/lib/pkgconfig/
43         $(INSTALL_DATA) \
44                 $(PKG_INSTALL_DIR)/usr/include/X11/extensions/* \
45                 $(1)/usr/include/X11/extensions/
46 endef
47
48 define Package/libxkbfile/install
49         $(INSTALL_DIR) $(1)/usr/lib
50         $(CP) \
51                 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
52                 $(1)/usr/lib/
53 endef
54
55 $(eval $(call BuildPackage,libxkbfile))