summaryrefslogtreecommitdiff
path: root/xmake/plugins/pack/xpack.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-26 00:38:21 +0800
committerruki <[email protected]>2025-11-26 00:38:21 +0800
commit79d611989dc8004733a4a81ef7124466788b79f4 (patch)
tree4705336de6e11fface14883cc9114b6f8969cd06 /xmake/plugins/pack/xpack.lua
parent76dc60d1552a0afe1faffd996a36a412e44d548d (diff)
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",