fix unknown arch in ipkg: use our ARCH instead of busybox's TARGET_ARCH (closes:...
[openwrt/staging/dedeckeh.git] / openwrt / 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.2.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=http://www.busybox.net/downloads
17 PKG_MD5SUM:=362b3dc0f2023ddfda901dc1f1a74391
18 PKG_CAT:=bzcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/busybox
25 SECTION:=base
26 CATEGORY:=Base system
27 DEFAULT:=y
28 TITLE:=Core utilities for embedded Linux
29 DESCRIPTION:=\
30 The Swiss Army Knife of embedded Linux. \\\
31 It slices, it dices, it makes Julian Fries.
32 URL:=http://busybox.net/
33 MENU:=1
34 CONFIG:=\\\
35 menu "Configuration" \\\
36 depends on PACKAGE_busybox \\\
37 source "$(SOURCE)/config/Config.in" \\\
38 endmenu
39 endef
40
41 define Build/Configure
42 $(SCRIPT_DIR)/gen_busybox_config.pl $(TOPDIR)/.config > $(PKG_BUILD_DIR)/.config
43 yes '' | $(MAKE) -C $(PKG_BUILD_DIR) \
44 CC="$(TARGET_CC)" \
45 CROSS="$(TARGET_CROSS)" \
46 oldconfig
47 endef
48
49 define Build/Compile
50 $(MAKE) -C $(PKG_BUILD_DIR) \
51 CC="$(TARGET_CC)" \
52 CROSS="$(TARGET_CROSS)" \
53 EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
54 IPKG_ARCH="$(ARCH)" \
55 all
56 endef
57
58 define Package/busybox/install
59 $(MAKE) -C $(PKG_BUILD_DIR) \
60 CC="$(TARGET_CC)" \
61 CROSS="$(TARGET_CROSS)" \
62 EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
63 IPKG_ARCH="$(ARCH)" \
64 PREFIX="$(1)" \
65 install
66 -rm -rf $(1)/lib64
67 endef
68
69 $(eval $(call BuildPackage,busybox))