forgot to bump up the release version from the patches the other day
[openwrt.git] / package / busybox / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=busybox
12 PKG_VERSION:=1.7.2
13 PKG_RELEASE:=4
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=http://www.busybox.net/downloads \
17                 http://distfiles.gentoo.org/distfiles/
18 PKG_MD5SUM:=c91ec9756e2000073a9dd8fa9fc3f89e
19
20 include $(INCLUDE_DIR)/package.mk
21
22 ifeq ($(DUMP),)
23   STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep '^CONFIG_BUSYBOX_' $(TOPDIR)/.config | md5s)
24 endif
25
26 init-y :=
27 init-$(CONFIG_BUSYBOX_CONFIG_HTTPD) += httpd
28 init-$(CONFIG_BUSYBOX_CONFIG_CROND) += cron
29 init-$(CONFIG_BUSYBOX_CONFIG_TELNETD) += telnet
30
31 define Package/busybox
32   SECTION:=base
33   CATEGORY:=Base system
34   TITLE:=Core utilities for embedded Linux
35   URL:=http://busybox.net/
36   MENU:=1
37 endef
38
39 define Package/busybox/description
40  The Swiss Army Knife of embedded Linux.
41  It slices, it dices, it makes Julian Fries.
42 endef
43
44 define Package/busybox/config
45         menu "Configuration"
46                 depends on PACKAGE_busybox
47                 source "$(SOURCE)/target-config.in"
48                 source "$(SOURCE)/config/Config.in"
49         endmenu
50 endef
51
52 define Build/Configure
53         rm -f $(PKG_BUILD_DIR)/.configured*
54         grep 'CONFIG_BUSYBOX_' $(TOPDIR)/.config | sed -e "s,\\(# \)\\?CONFIG_BUSYBOX_\\(.*\\),\\1\\2,g" > $(PKG_BUILD_DIR)/.config
55         yes '' | $(MAKE) -C $(PKG_BUILD_DIR) \
56                 CC="$(TARGET_CC)" \
57                 CROSS_COMPILE="$(TARGET_CROSS)" \
58                 ARCH="$(ARCH)" \
59                 oldconfig
60 endef
61
62 define Build/Compile
63         $(MAKE) -C $(PKG_BUILD_DIR) \
64                 CC="$(TARGET_CC)" \
65                 CROSS_COMPILE="$(TARGET_CROSS)" \
66                 EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
67                 ARCH="$(ARCH)" \
68                 IPKG_ARCH="$(ARCH)" \
69                 all
70 endef
71
72 define Package/busybox/install
73         find $(PKG_BUILD_DIR) -lname "*busybox" -exec rm \{\} \;
74         $(MAKE) -C $(PKG_BUILD_DIR) \
75                 CC="$(TARGET_CC)" \
76                 CROSS_COMPILE="$(TARGET_CROSS)" \
77                 EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
78                 ARCH="$(ARCH)" \
79                 IPKG_ARCH="$(ARCH)" \
80                 CONFIG_PREFIX="$(1)" \
81                 install
82         $(INSTALL_DIR) $(1)/etc/init.d
83         for tmp in $(init-y); do \
84                 $(INSTALL_BIN) ./files/$$$$tmp $(1)/etc/init.d/$$$$tmp; \
85         done
86         -rm -rf $(1)/lib64
87 endef
88
89 $(eval $(call BuildPackage,busybox))