sed: unconditionally disable SELinux, NLS and ACL support (#12007)
[openwrt/openwrt.git] / tools / sed / Makefile
1 #
2 # Copyright (C) 2006-2010 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.2.1
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
13 PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
14 PKG_MD5SUM:=7d310fbd76e01a01115075c1fd3f455a
15 PKG_CAT:=bzcat
16 export SED:=
17
18 include $(INCLUDE_DIR)/host-build.mk
19
20 HOST_CONFIGURE_ARGS += \
21 --disable-acl \
22 --disable-nls \
23
24 HOST_CONFIGURE_VARS += \
25 ac_cv_search_setfilecon=no \
26
27 define Host/Compile
28 $(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" LDFLAGS="-static"
29 endef
30
31 define Host/Install
32 $(INSTALL_BIN) $(HOST_BUILD_DIR)/sed/sed $(STAGING_DIR_HOST)/bin/
33 endef
34
35 define Host/Clean
36 rm -f $(STAGING_DIR_HOST)/bin/sed
37 endef
38
39 $(eval $(call HostBuild))