openwrt/openwrt/package/busybox/Makefile

52 lines
1.3 KiB
Makefile
Raw Normal View History

#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
2005-04-01 00:25:58 +02:00
# $Id$
include $(TOPDIR)/rules.mk
2005-04-01 00:25:58 +02:00
PKG_NAME:=busybox
PKG_VERSION:=1.2.1
PKG_RELEASE:=1
2005-04-01 00:25:58 +02:00
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://www.busybox.net/downloads
PKG_MD5SUM:=362b3dc0f2023ddfda901dc1f1a74391
2005-04-01 00:25:58 +02:00
PKG_CAT:=bzcat
include $(INCLUDE_DIR)/package.mk
2005-04-01 00:25:58 +02:00
define Package/busybox
SECTION:=base
CATEGORY:=Base system
MENU:=1
DEFAULT:=y
TITLE:=Core utilities for embedded Linux
DESCRIPTION:=The Swiss Army Knife of embedded Linux. \\\
It slices, it dices, it makes Julian Fries.
URL:=http://busybox.net/
CONFIG:=\\\
menu "Configuration" \\\
depends on PACKAGE_busybox \\\
source "$(SOURCE)/config/Config.in" \\\
endmenu
endef
2005-04-01 00:25:58 +02:00
define Build/Configure
2005-04-01 00:25:58 +02:00
$(SCRIPT_DIR)/gen_busybox_config.pl $(TOPDIR)/.config > $(PKG_BUILD_DIR)/.config
yes '' | $(MAKE) CC="$(TARGET_CC)" CROSS="$(TARGET_CROSS)" \
-C $(PKG_BUILD_DIR) oldconfig
endef
2005-04-01 00:25:58 +02:00
define Package/busybox/install
$(MAKE) CC="$(TARGET_CC)" CROSS="$(TARGET_CROSS)" \
PREFIX="$(1)" EXTRA_CFLAGS="$(TARGET_CFLAGS)" -C $(PKG_BUILD_DIR) install
2006-06-01 01:36:37 +02:00
-rm -rf $(1)/lib64
endef
$(eval $(call BuildPackage,busybox))