From 88b7498887609aa7808f68aff73c2af81918e07a Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 2 Jul 2026 23:37:37 +0800 Subject: add filter support for xpack --- xmake/plugins/pack/xpack_component.lua | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'xmake/plugins/pack/xpack_component.lua') diff --git a/xmake/plugins/pack/xpack_component.lua b/xmake/plugins/pack/xpack_component.lua index fa12a1646..fb219cf55 100644 --- a/xmake/plugins/pack/xpack_component.lua +++ b/xmake/plugins/pack/xpack_component.lua @@ -25,6 +25,7 @@ import("core.project.config") import("core.project.project") import("private.core.base.select_script") import("private.core.base.match_copyfiles") +import("filter") -- define module local xpack_component = xpack_component or object {_init = {"_name", "_info", "_package"}} @@ -115,7 +116,9 @@ end -- get the install files function xpack_component:installfiles() - return match_copyfiles(self, "installfiles", self:package():installdir()) + return match_copyfiles(self, "installfiles", self:package():installdir(), {filter = function (value) + return filter.handle(value, self:package()) + end}) end -- get the installed root directory, this is just a temporary sandbox installation path, @@ -131,7 +134,9 @@ end -- get the source files function xpack_component:sourcefiles() - return match_copyfiles(self, "sourcefiles", self:package():sourcedir()) + return match_copyfiles(self, "sourcefiles", self:package():sourcedir(), {filter = function (value) + return filter.handle(value, self:package()) + end}) end -- get the source root directory -- cgit v1.3.1