Update sed to 4.8 Use POSIX threads Disable i18n and selinux support Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# 
 | 
						|
# Copyright (C) 2006-2013 OpenWrt.org
 | 
						|
#
 | 
						|
# This is free software, licensed under the GNU General Public License v2.
 | 
						|
# See /LICENSE for more information.
 | 
						|
#
 | 
						|
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=sed
 | 
						|
PKG_VERSION:=4.8
 | 
						|
 | 
						|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 | 
						|
PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
 | 
						|
PKG_HASH:=f79b0cfea71b37a8eeec8490db6c5f7ae7719c35587f21edb0617f370eeff633
 | 
						|
export SED:=
 | 
						|
 | 
						|
HOST_BUILD_PARALLEL:=1
 | 
						|
 | 
						|
HOSTCC := $(HOSTCC_NOCACHE)
 | 
						|
HOSTCXX := $(HOSTCXX_NOCACHE)
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/host-build.mk
 | 
						|
 | 
						|
HOST_CONFIGURE_ARGS += \
 | 
						|
	--disable-acl \
 | 
						|
	--disable-nls \
 | 
						|
	--enable-threads=posix \
 | 
						|
	--disable-i18n \
 | 
						|
	--without-selinux
 | 
						|
 | 
						|
HOST_CONFIGURE_VARS += \
 | 
						|
	ac_cv_search_setfilecon=no \
 | 
						|
	ac_cv_header_selinux_context_h=no \
 | 
						|
	ac_cv_header_selinux_selinux_h=no \
 | 
						|
 | 
						|
define Host/Compile
 | 
						|
	+$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) SHELL="$(BASH)"
 | 
						|
endef
 | 
						|
 | 
						|
define Host/Install
 | 
						|
	$(INSTALL_BIN) $(HOST_BUILD_DIR)/sed/sed $(STAGING_DIR_HOST)/bin/
 | 
						|
endef
 | 
						|
 | 
						|
define Host/Clean
 | 
						|
	rm -f $(STAGING_DIR_HOST)/bin/sed
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call HostBuild))
 |