398581770c1349df93d01cbc0870d18389dbc8d9
[packages.git] / Xorg / xorg / lib / libXrandr / 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:=libXrandr
11 PKG_RELEASE:=4
12 PKG_VERSION:=1.3.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:=68eb59c3b7524db6ffd78746ee893d1d
18
19 PKG_FIXUP:=libtool
20 PKG_INSTALL:=1
21 PKG_BUILD_DEPENDS:=randrproto renderproto xextproto
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/libXrandr
26   SECTION:=xorg-libraries
27   CATEGORY:=Xorg
28   SUBMENU:=libraries
29   DEPENDS:=+libXext +libXrender +libX11
30   TITLE:=libXrandr
31   URL:=http://xorg.freedesktop.org/
32 endef
33
34 define Build/Configure
35         $(call Build/Configure/Default, \
36                 --enable-malloc0returnsnull \
37         )
38 endef
39
40 define Build/InstallDev
41         $(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11/extensions}
42         $(CP) \
43                 $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
44                 $(1)/usr/lib/
45         $(INSTALL_DATA) \
46                 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
47                 $(1)/usr/lib/pkgconfig/
48         $(INSTALL_DATA) \
49                 $(PKG_INSTALL_DIR)/usr/include/X11/extensions/* \
50                 $(1)/usr/include/X11/extensions/
51 endef
52
53 define Package/libXrandr/install
54         $(INSTALL_DIR) $(1)/usr/lib
55         $(CP) \
56                 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
57                 $(1)/usr/lib/
58 endef
59
60 $(eval $(call BuildPackage,libXrandr))