mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

* tools/xz: update to 5.2.8 Update to latest release. Signed-off-by: Nick Hainke <vincent@systemli.org> * tools/sed: update to 4.9 Release Notes: https://lists.gnu.org/archive/html/info-gnu/2022-11/msg00001.html Signed-off-by: Nick Hainke <vincent@systemli.org> * tools/bash: update to 5.2.9 Update to latest release. Signed-off-by: Nick Hainke <vincent@systemli.org> * tools/llvm: update to 15.0.0 Release Notes: https://discourse.llvm.org/t/llvm-15-0-0-release/65099 Signed-off-by: Nick Hainke <vincent@systemli.org> Signed-off-by: Nick Hainke <vincent@systemli.org> Co-authored-by: Nick Hainke <vincent@systemli.org>
26 lines
550 B
Makefile
26 lines
550 B
Makefile
#
|
|
# Copyright (C) 2015 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:=bash
|
|
PKG_CPE_ID:=cpe:/a:gnu:bash
|
|
PKG_VERSION:=5.2.9
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@GNU/bash
|
|
PKG_HASH:=68d978264253bc933d692f1de195e2e5b463a3984dfb4e5504b076865f16b6dd
|
|
|
|
HOST_BUILD_PARALLEL := 1
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
define Host/Uninstall
|
|
-$(call Host/Compile/Default,uninstall)
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|