add packages_10.03.2 in preparation for the 10.03.2 interim release
[10.03/packages.git] / Xorg / app / xinit / Makefile
1 #
2 # Copyright (C) 2008-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:=xinit
11 PKG_VERSION:=1.0.5
12 PKG_RELEASE:=1
13
14 PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.3/src/app
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
17 PKG_MD5SUM:=9a2aad51042141a0e6ad066015397595
18
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 TARGET_LDFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
24
25 define Package/xinit
26   SECTION:=xorg-app
27   CATEGORY:=Xorg
28   SUBMENU:=app
29   DEPENDS:=+libX11
30   TITLE:=xinit
31   URL:=http://xorg.freedesktop.org/
32 endef
33
34 define Package/xinit/install
35         $(INSTALL_DIR) $(1)/usr/bin
36         $(INSTALL_BIN) \
37                 $(PKG_INSTALL_DIR)/usr/bin/* \
38                 $(1)/usr/bin/
39 endef
40
41 $(eval $(call BuildPackage,xinit))