OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 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
3 office 10 PKG_VERSION:=4.5
1 office 11  
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
13 PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
3 office 14 PKG_HASH:=7aad73c8839c2bdadca9476f884d2953cdace9567ecd0d90f9959f229d146b40
1 office 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))