mirror of
https://github.com/VIKINGYFY/immortalwrt.git
synced 2025-12-16 09:10:38 +00:00
Remove upstreamed patches: - 0001-mksquashfs-fix-build-for-big-endian-architectures.patch - 0002-gzip_wrapper-fix-byte-swapping-prototype.patch - 0003-mksquashfs-fix-regression-introduced-by-SEEK_DATA-op.patch Link: https://github.com/openwrt/openwrt/pull/20843 Signed-off-by: Nick Hainke <vincent@systemli.org>
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2006-2012 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:=squashfs4
|
|
PKG_CPE_ID:=cpe:/a:phillip_lougher:squashfs
|
|
PKG_VERSION:=4.7.4
|
|
PKG_RELEASE=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/plougher/squashfs-tools
|
|
PKG_SOURCE_DATE:=2025-11-10
|
|
PKG_SOURCE_VERSION:=53e5a67aac42e0bc9ad4a249156d7d549ce7436c
|
|
PKG_MIRROR_HASH:=7ce390d95af4b7b4ce768cec18aeb9ac61b8ca413d0ced2c42a81446d9dd8690
|
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
define Host/Compile
|
|
+$(HOST_MAKE_VARS) \
|
|
$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR)/squashfs-tools \
|
|
LZ4_SUPPORT=0 \
|
|
LZO_SUPPORT=0 \
|
|
ZSTD_SUPPORT=0 \
|
|
GZIP_SUPPORT=1 \
|
|
XZ_SUPPORT=1 \
|
|
LZMA_XZ_SUPPORT=1 \
|
|
XZ_EXTENDED_OPTIONS=1 \
|
|
EXTRA_CFLAGS="-I$(STAGING_DIR_HOST)/include" \
|
|
mksquashfs unsquashfs
|
|
endef
|
|
|
|
define Host/Install
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/squashfs-tools/mksquashfs $(STAGING_DIR_HOST)/bin/mksquashfs4
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/squashfs-tools/unsquashfs $(STAGING_DIR_HOST)/bin/unsquashfs4
|
|
endef
|
|
|
|
define Host/Clean
|
|
rm -f $(STAGING_DIR_HOST)/bin/mksquashfs4
|
|
rm -f $(STAGING_DIR_HOST)/bin/unsquashfs4
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|