build system refactoring in preparation for allowing packages to do host-build steps
[openwrt-10.03/.git] / tools / sed / 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 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=sed
10 PKG_VERSION:=4.1.2
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
13 PKG_SOURCE_URL:=ftp://ftp.gnu.org/gnu/$(PKG_NAME)
14 PKG_MD5SUM:=928f0e06422f414091917401f1a834d0
15 PKG_CAT:=zcat
16 export SED:=
17
18 include $(INCLUDE_DIR)/host-build.mk
19
20 define Host/Compile
21         $(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)"
22 endef
23
24 define Host/Install
25         $(INSTALL_BIN) $(HOST_BUILD_DIR)/sed/sed $(STAGING_DIR_HOST)/bin/
26 endef
27
28 define Host/Clean
29         rm -f $(STAGING_DIR_HOST)/bin/sed
30 endef
31
32 $(eval $(call HostBuild))