tools/sed: Update to 4.4
[openwrt/openwrt.git] / tools / sed / Makefile
1 #
2 # Copyright (C) 2006-2013 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.4
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
13 PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
14 PKG_HASH:=cbd6ebc5aaf080ed60d0162d7f6aeae58211a1ee9ba9bb25623daa6cd942683b
15 export SED:=
16
17 HOST_BUILD_PARALLEL:=1
18
19 HOSTCC := $(HOSTCC_NOCACHE)
20 HOSTCXX := $(HOSTCXX_NOCACHE)
21
22 include $(INCLUDE_DIR)/host-build.mk
23
24 HOST_CONFIGURE_ARGS += \
25 --disable-acl \
26 --disable-nls \
27
28 HOST_CONFIGURE_VARS += \
29 ac_cv_search_setfilecon=no \
30 ac_cv_header_selinux_context_h=no \
31 ac_cv_header_selinux_selinux_h=no \
32
33 define Host/Compile
34 +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) SHELL="$(BASH)"
35 endef
36
37 define Host/Install
38 $(INSTALL_BIN) $(HOST_BUILD_DIR)/sed/sed $(STAGING_DIR_HOST)/bin/
39 endef
40
41 define Host/Clean
42 rm -f $(STAGING_DIR_HOST)/bin/sed
43 endef
44
45 $(eval $(call HostBuild))