summaryrefslogtreecommitdiff
path: root/xmake/plugins/pack/xpack.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-26 11:33:49 +0800
committerGitHub <[email protected]>2025-11-26 11:33:49 +0800
commite7cd3c2c12d3d51ffef3d2aa9885bfef9db8d650 (patch)
tree01bf3737ff18ffb3d6b663c781d2cc9dbd8541d1 /xmake/plugins/pack/xpack.lua
parent76dc60d1552a0afe1faffd996a36a412e44d548d (diff)
parent29ec59fdd5478d14aed635022630a5f1ff492e7c (diff)
Merge pull request #7062 from xmake-io/dmg
Add dmg xpack format
Diffstat (limited to 'xmake/plugins/pack/xpack.lua')
-rw-r--r--xmake/plugins/pack/xpack.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/xmake/plugins/pack/xpack.lua b/xmake/plugins/pack/xpack.lua
index 6382a7370..1e39d6a83 100644
--- a/xmake/plugins/pack/xpack.lua
+++ b/xmake/plugins/pack/xpack.lua
@@ -205,6 +205,7 @@ function xpack:inputkind()
nsis = "binary",
zip = "binary",
targz = "binary",
+ dmg = "binary",
srczip = "source",
srctargz = "source",
runself = "source",
@@ -224,6 +225,7 @@ function xpack:outputkind()
nsis = "binary",
zip = "binary",
targz = "binary",
+ dmg = "binary",
srczip = "source",
srctargz = "source",
runself = "source",
@@ -373,6 +375,7 @@ function xpack:extension()
nsis = ".exe",
zip = ".zip",
targz = ".tar.gz",
+ dmg = ".dmg",
srczip = ".zip",
srctargz = ".tar.gz",
runself = ".gz.run",