OpenWrt – Blame information for rev 2
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 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:=8.27 |
||
12 | |||
13 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz |
||
14 | PKG_SOURCE_URL:=@GNU/coreutils |
||
15 | PKG_HASH:=8891d349ee87b9ff7870f52b6d9312a9db672d2439d289bc57084771ca21656b |
||
16 | |||
17 | HOST_BUILD_PARALLEL := 1 |
||
18 | |||
19 | BUILD_PROGRAMS = date readlink |
||
20 | |||
21 | include $(INCLUDE_DIR)/host-build.mk |
||
22 | |||
23 | BUILD_BINS = $(patsubst %,src/%,$(BUILD_PROGRAMS)) |
||
24 | |||
25 | HOST_CONFIGURE_ARGS += \ |
||
26 | --enable-install-program=$(subst $(space),$(comma),$(strip $(BUILD_PROGRAMS))) |
||
27 | |||
28 | HOST_MAKE_FLAGS += \ |
||
29 | PROGRAMS="$(BUILD_BINS)" \ |
||
30 | LIBRARIES= MANS= SUBDIRS=. |
||
31 | |||
32 | define Host/Install |
||
33 | $(INSTALL_DIR) $(1)/bin |
||
34 | $(CP) $(patsubst %,$(HOST_BUILD_DIR)/%,$(BUILD_BINS)) $(1)/bin/ |
||
35 | endef |
||
36 | |||
37 | $(eval $(call HostBuild)) |