Cleanup xorg/libs package makefiles:
[openwrt/svn-archive/archive.git] / Xorg / xorg / lib / libXau / Makefile
1 #
2 # Copyright (C) 2007-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # blogic@openwrt.org
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_BASE_NAME:=libXau
12 PKG_NAME:=libXau
13 PKG_RELEASE:=3
14 PKG_VERSION:=1.0.4
15
16 PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.4/src/lib/
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
18 PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
19 PKG_MD5SUM:=0f2b88d857e0a3f5898e4759c541af46
20 PKG_FIXUP:=libtool
21 PKG_INSTALL:=1
22 PKG_BUILD_DEPENDS:=xproto
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/libXau
27 SECTION:=xorg-lib
28 CATEGORY:=Xorg
29 SUBMENU:=lib
30 TITLE:=libXau
31 URL:=http://xorg.freedesktop.org/
32 endef
33
34 define Build/InstallDev
35 $(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11}
36 $(INSTALL_DATA) \
37 $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
38 $(1)/usr/lib/
39 $(INSTALL_DATA) \
40 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
41 $(1)/usr/lib/pkgconfig/
42 $(INSTALL_DATA) \
43 $(PKG_INSTALL_DIR)/usr/include/X11/* \
44 $(1)/usr/include/X11/
45 endef
46
47 define Package/libXau/install
48 $(INSTALL_DIR) $(1)/usr/lib
49 $(INSTALL_DATA) \
50 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
51 $(1)/usr/lib/
52 endef
53
54 $(eval $(call BuildPackage,libXau))