diff options
| author | ruki <[email protected]> | 2026-03-03 14:56:04 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-03 14:56:04 +0800 |
| commit | 83dcecd2bde90ca5a78fd263ba0f79401c5c223c (patch) | |
| tree | 18324c368eefdad119e3efe88b140eede1ad395e /xmake/plugins/pack/xpack.lua | |
| parent | 4662898e3eae02b84045bae6448c79758edbd5c9 (diff) | |
| parent | 1b5179defb0f9973e6dba387ec177e6c99efbe5d (diff) | |
Merge pull request #7366 from xmake-io/gz
Improve targz and add tarxz pack format
Diffstat (limited to 'xmake/plugins/pack/xpack.lua')
| -rw-r--r-- | xmake/plugins/pack/xpack.lua | 6 |
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", |
