summaryrefslogtreecommitdiff
path: root/xmake/plugins/pack/xpack.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2026-03-03 22:54:02 +0800
committerruki <[email protected]>2026-03-03 22:54:02 +0800
commit1b5179defb0f9973e6dba387ec177e6c99efbe5d (patch)
tree18324c368eefdad119e3efe88b140eede1ad395e /xmake/plugins/pack/xpack.lua
parentf144e8a5a391fcb8f457576665c57dce5acd720f (diff)
add tarxz pack format support
Diffstat (limited to 'xmake/plugins/pack/xpack.lua')
-rw-r--r--xmake/plugins/pack/xpack.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/xmake/plugins/pack/xpack.lua b/xmake/plugins/pack/xpack.lua
index a20b480bc..fbd53ae22 100644
--- a/xmake/plugins/pack/xpack.lua
+++ b/xmake/plugins/pack/xpack.lua
@@ -205,10 +205,12 @@ function xpack:inputkind()
nsis = "binary",
zip = "binary",
targz = "binary",
+ tarxz = "binary",
dmg = "binary",
appimage = "binary",
srczip = "source",
srctargz = "source",
+ srctarxz = "source",
runself = "source",
deb = "source",
srpm = "source",
@@ -226,10 +228,12 @@ function xpack:outputkind()
nsis = "binary",
zip = "binary",
targz = "binary",
+ tarxz = "binary",
dmg = "binary",
appimage = "binary",
srczip = "source",
srctargz = "source",
+ srctarxz = "source",
runself = "source",
deb = "binary",
srpm = "source",
@@ -381,10 +385,12 @@ function xpack:extension()
nsis = ".exe",
zip = ".zip",
targz = ".tar.gz",
+ tarxz = ".tar.xz",
dmg = ".dmg",
appimage = ".AppImage",
srczip = ".zip",
srctargz = ".tar.gz",
+ srctarxz = ".tar.xz",
runself = ".gz.run",
deb = ".deb",
srpm = ".src.rpm",