[packages] Various Makefile cleanup.
[openwrt/svn-archive/archive.git] / package / kexec-tools / Makefile
1 #
2 # Copyright (C) 2006-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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=kexec-tools
11 PKG_VERSION:=2.0.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=@KERNEL/linux/kernel/people/horms/kexec-tools
16 PKG_MD5SUM:=d9f2ecd3c3307905f24130a25816e6cc
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/kexec-tools
21 SECTION:=utils
22 CATEGORY:=Utilities
23 DEPENDS:=@armeb||@i386||@TARGET_ps3||@mipsel||@mips +zlib
24 TITLE:=Kernel boots kernel
25 URL:=http://kernel.org/pub/linux/kernel/people/horms/kexec-tools/
26 MENU:=1
27 endef
28
29 define Package/kexec-tools/description
30 kexec is a set of systems call that allows you to load
31 another kernel from the currently executing Linux kernel.
32 endef
33
34 define Package/kexec-tools/config
35 source "$(SOURCE)/kexec-config.in"
36 endef
37
38 CONFIGURE_ARGS = \
39 --target=$(CONFIG_KEXEC_TOOLS_TARGET_NAME)-linux-$(TARGET_SUFFIX) \
40 --host=$(GNU_TARGET_NAME)-uclibc \
41 --build=$(GNU_HOST_NAME) \
42 --program-prefix="" \
43 --program-suffix="" \
44 --prefix=/usr \
45 --exec-prefix=/usr \
46 --bindir=/usr/bin \
47 --sbindir=/usr/sbin \
48 --libexecdir=/usr/lib \
49 --sysconfdir=/etc \
50
51 CONFIGURE_VARS += \
52 BUILD_CC="$(HOSTCC)" \
53 TARGET_CC="$(TARGET_CC)" \
54
55 define Build/Compile
56 $(MAKE) -C $(PKG_BUILD_DIR) all
57 endef
58
59 define Package/kexec-tools/install
60 $(MAKE) -C $(PKG_BUILD_DIR) \
61 DESTDIR="$(1)" \
62 install
63 rm -rf $(1)/usr/man
64 endef
65
66 $(eval $(call BuildPackage,kexec-tools))