3df59addc50f5b91f6dfbac202dbaf3707e52a46
[openwrt/svn-archive/archive.git] / Xorg / xorg / lib / libXtst / 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:=libXtst
11 PKG_RELEASE:=1
12 PKG_VERSION:=1.1.0
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:=dd6f3e20b87310187121539f9605d977
18
19 PKG_FIXUP:=libtool
20 PKG_INSTALL:=1
21 PKG_BUILD_DEPENDS:=recordproto xextproto inputproto
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/libXtst
26 SECTION:=xorg-lib
27 CATEGORY:=Xorg
28 SUBMENU:=libraries
29 DEPENDS:=+libX11 +libXext +libXi
30 TITLE:=libXtst
31 URL:=http://xorg.freedesktop.org/
32 endef
33
34 define Build/InstallDev
35 $(INSTALL_DIR) $(1)/usr/{include,lib/pkgconfig}
36
37 $(CP) \
38 $(PKG_INSTALL_DIR)/usr/include/* \
39 $(1)/usr/include/
40
41 $(CP) \
42 $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
43 $(1)/usr/lib/
44 $(INSTALL_DATA) \
45 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
46 $(1)/usr/lib/pkgconfig/
47 endef
48
49 define Package/libXtst/install
50 $(INSTALL_DIR) $(1)/usr/lib
51 $(CP) \
52 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
53 $(1)/usr/lib/
54 endef
55
56 $(eval $(call BuildPackage,libXtst))