61c7acbb007eb9a5a700a3b244928033550f0bd8
[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
17 PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
18
19 include $(INCLUDE_DIR)/host-build.mk
20
21 override SHELL:=$(BASH)
22
23 define Build/Configure
24         (cd $(PKG_BUILD_DIR); rm -rf config.cache; \
25                 ./configure \
26                 --prefix=$(STAGING_DIR) \
27                 --prefix=/usr \
28         );
29 endef
30
31 define Build/Compile
32         $(MAKE) -C $(PKG_BUILD_DIR)
33 endef
34
35 define Build/Install
36         @if [ -L $(STAGING_DIR)/bin/sed ] ; then \
37                 rm -f $(STAGING_DIR)/bin/sed; fi;
38         @if [ ! -f $(STAGING_DIR)/bin/sed -o $(STAGING_DIR)/bin/sed -ot $(PKG_BUILD_DIR)/sed/sed ]; then \
39             set -x; \
40             mkdir -p $(STAGING_DIR)/bin; \
41             $(MAKE) DESTDIR=$(STAGING_DIR) -C $(PKG_BUILD_DIR) install; \
42             mv $(STAGING_DIR)/usr/bin/sed $(STAGING_DIR)/bin/; \
43             rm -rf $(STAGING_DIR)/share/locale $(STAGING_DIR)/usr/info \
44                     $(STAGING_DIR)/usr/man $(STAGING_DIR)/usr/share/doc; \
45         fi
46 endef
47
48 $(eval $(call HostBuild))