diff options
| author | ruki <[email protected]> | 2025-11-26 23:16:45 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-11-26 23:16:45 +0800 |
| commit | 32717cd979bfd514f9ef1242efc80f91bd261da8 (patch) | |
| tree | e563516cdd0bf7b08a956abc3d3a61ef4b0d2ee1 /xmake/plugins/pack/xpack.lua | |
| parent | e7cd3c2c12d3d51ffef3d2aa9885bfef9db8d650 (diff) | |
pack appimage support
Diffstat (limited to 'xmake/plugins/pack/xpack.lua')
| -rw-r--r-- | xmake/plugins/pack/xpack.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xmake/plugins/pack/xpack.lua b/xmake/plugins/pack/xpack.lua index 1e39d6a83..bccb93cfa 100644 --- a/xmake/plugins/pack/xpack.lua +++ b/xmake/plugins/pack/xpack.lua @@ -206,6 +206,7 @@ function xpack:inputkind() zip = "binary", targz = "binary", dmg = "binary", + appimage = "binary", srczip = "source", srctargz = "source", runself = "source", @@ -226,6 +227,7 @@ function xpack:outputkind() zip = "binary", targz = "binary", dmg = "binary", + appimage = "binary", srczip = "source", srctargz = "source", runself = "source", @@ -376,6 +378,7 @@ function xpack:extension() zip = ".zip", targz = ".tar.gz", dmg = ".dmg", + appimage = ".AppImage", srczip = ".zip", srctargz = ".tar.gz", runself = ".gz.run", |
