233ab1585d75af954dd501348d890922628612a4
[openwrt/staging/jow.git] / tools / coreutils / Makefile
1 #
2 # Copyright (C) 2015 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:=coreutils
10 PKG_CPE_ID:=cpe:/a:gnu:coreutils
11 PKG_VERSION:=9.3
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
14 PKG_SOURCE_URL:=@GNU/coreutils
15 PKG_HASH:=adbcfcfe899235b71e8768dcf07cd532520b7f54f9a8064843f8d199a904bbaa
16
17 HOST_BUILD_PARALLEL := 1
18
19 BUILD_PROGRAMS = date readlink touch ln chown ginstall
20
21 include $(INCLUDE_DIR)/host-build.mk
22
23 export GNULIB_SRCDIR:=$(HOST_GNULIB_SRCDIR)
24
25 BUILD_BINS = $(patsubst %,src/%,$(BUILD_PROGRAMS))
26
27 HOST_CONFIGURE_ARGS += \
28 --enable-install-program=$(subst $(space),$(comma),$(strip $(BUILD_PROGRAMS)))
29
30 HOST_MAKE_FLAGS += \
31 $(AM_TOOL_PATHS_FAKE) \
32 PROGRAMS="$(BUILD_BINS)" \
33 LIBRARIES= MANS= SUBDIRS=.
34
35 define Host/Bootstrap
36 ( \
37 cd $(HOST_BUILD_DIR); \
38 $(AM_TOOL_PATHS_FAKE) \
39 ./bootstrap \
40 --bootstrap-sync \
41 --force \
42 --no-git \
43 --skip-po \
44 --gnulib-srcdir=$(GNULIB_SRCDIR) \
45 )
46 endef
47
48 define Host/Prepare
49 $(call Host/Prepare/Default)
50 $(if $(QUILT),,$(call Host/Bootstrap))
51 endef
52
53 define Host/Configure
54 $(if $(QUILT),$(call Host/Bootstrap))
55 -$(CP) $(HOST_BUILD_DIR)/lib/time.in.h~ $(HOST_BUILD_DIR)/lib/time.in.h # @GNULIB_TIME@ not defined
56 $(call Host/Configure/Default)
57 endef
58
59 define Host/Install
60 $(INSTALL_DIR) $(1)/bin
61 $(INSTALL_BIN) $(patsubst %,$(HOST_BUILD_DIR)/%,$(BUILD_BINS)) $(1)/bin/
62 ln -sf ginstall $(1)/bin/install
63 endef
64
65 define Host/Uninstall
66 rm -f $(STAGING_DIR_HOST)/bin/install
67 -$(call Host/Compile/Default,uninstall)
68 endef
69
70 $(eval $(call HostBuild))