mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-14 23:09:45 +01:00
Release Note: https://github.com/plougher/squashfs-tools/releases/tag/4.7.5 Remove upstreamed patch: - 0001-mksquashfs-don-t-create-duplicate-virtual-real-disk-.patch Signed-off-by: Shiji Yang <yangshiji66@outlook.com> Link: https://github.com/openwrt/openwrt/pull/22249 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
48 lines
1.2 KiB
Makefile
48 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.5
|
|
PKG_RELEASE=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/plougher/squashfs-tools
|
|
PKG_SOURCE_DATE:=2026-03-02
|
|
PKG_SOURCE_VERSION:=708c59ae80853b0845017c33b42e56061cc546cd
|
|
PKG_MIRROR_HASH:=504dbc8e6709ac904c4e6929ebba6f88c125b2b9775371f0cd5d9967bfba89e1
|
|
|
|
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))
|