port iptables to new config format, change handling of TITLE and DESCRIPTION
[openwrt.git] / package / busybox / Makefile
1 # $Id$
2
3 include $(TOPDIR)/rules.mk
4
5 PKG_NAME:=busybox
6 PKG_RELEASE:=1
7
8 PKG_VERSION:=1.1.2
9 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
10 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
11 PKG_SOURCE_URL:=http://www.busybox.net/downloads
12 PKG_MD5SUM:=0b5d78072302fe687407956537bdb9e3
13 PKG_CAT:=bzcat
14
15 include $(TOPDIR)/package/rules.mk
16
17 define Package/busybox
18 CONFIGFILE:=config/Config.in
19 SECTION:=base
20 CATEGORY:=Base system
21 TITLE:=Core utilities for embedded Linux
22 endef
23
24 define Build/Configure
25         $(SCRIPT_DIR)/gen_busybox_config.pl $(TOPDIR)/.config > $(PKG_BUILD_DIR)/.config
26         yes '' | $(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" -C $(PKG_BUILD_DIR) oldconfig
27 endef
28
29 define Build/Compile
30         $(MAKE) -C $(PKG_BUILD_DIR) \
31                 CC=$(TARGET_CC) \
32                 CROSS="$(TARGET_CROSS)" \
33                 PREFIX="$(IDIR_BUSYBOX)" \
34                 EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
35                 ARCH="$(ARCH)" 
36 endef
37
38 define Package/busybox/install
39         $(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" PREFIX="$(1)" \
40                 EXTRA_CFLAGS="$(TARGET_CFLAGS)" -C $(PKG_BUILD_DIR) install
41         $(STRIP) $(1)/bin/busybox
42 endef
43
44 $(eval $(call BuildPackage,busybox))