zip windows packing
This commit is contained in:
15
xmake.lua
15
xmake.lua
@@ -52,20 +52,7 @@ if is_plat("mingw") then
|
|||||||
add_ldflags("-static-libstdc++", "-static")
|
add_ldflags("-static-libstdc++", "-static")
|
||||||
end
|
end
|
||||||
|
|
||||||
xpack("jminos")
|
includes("./xpack.lua")
|
||||||
set_formats("flatpak")
|
|
||||||
set_extension("")
|
|
||||||
set_title("jminos")
|
|
||||||
set_author("zulianc")
|
|
||||||
set_description("A test installer.")
|
|
||||||
set_homepage("https://git.ale-pri.com/TetrisNerd/jminos")
|
|
||||||
set_company("org.zulianc")
|
|
||||||
on_package(function (package)
|
|
||||||
os.cd("flatpak")
|
|
||||||
os.exec("flatpak-builder --force-clean --user --install-deps-from=flathub --repo=repo --install builddir org.zulianc.jminos.yml")
|
|
||||||
os.exec("flatpak build-bundle repo jminos.flatpak org.zulianc.jminos --runtime-repo=https://flathub.org/repo/flathub.flatpakrepo")
|
|
||||||
os.mv("jminos.flatpak", package:outputdir())
|
|
||||||
end)
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- If you want to known more usage about xmake, please see https://xmake.io
|
-- If you want to known more usage about xmake, please see https://xmake.io
|
||||||
|
|||||||
33
xpack.lua
Normal file
33
xpack.lua
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
if is_os("linux") then
|
||||||
|
|
||||||
|
xpack("jminos")
|
||||||
|
set_formats("flatpak")
|
||||||
|
set_extension("flatpak")
|
||||||
|
set_title("jminos")
|
||||||
|
set_author("zulianc")
|
||||||
|
set_description("A test installer.")
|
||||||
|
set_homepage("https://git.ale-pri.com/TetrisNerd/jminos")
|
||||||
|
set_company("org.zulianc")
|
||||||
|
on_package(function (package)
|
||||||
|
os.cd("flatpak")
|
||||||
|
os.exec("flatpak-builder --force-clean --user --install-deps-from=flathub --repo=repo --install builddir org.zulianc.jminos.yml")
|
||||||
|
os.exec("flatpak build-bundle repo jminos.flatpak org.zulianc.jminos --runtime-repo=https://flathub.org/repo/flathub.flatpakrepo")
|
||||||
|
os.mv("jminos.flatpak", package:outputdir())
|
||||||
|
end)
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
xpack("jminos")
|
||||||
|
set_formats("zip")
|
||||||
|
add_targets("graph")
|
||||||
|
add_installfiles("(data/**.png)")
|
||||||
|
on_load(function (package)
|
||||||
|
package:set("basename", package:name() .. "-v" .. package:version() .. "-" .. package:arch())
|
||||||
|
end)
|
||||||
|
after_installcmd(function (package, batchcmds)
|
||||||
|
batchcmds:mv(path.join(package:installdir("bin"), "*"), package:installdir())
|
||||||
|
batchcmds:rm(package:installdir("bin"))
|
||||||
|
batchcmds:rm(package:installdir("**/.gitkeep"))
|
||||||
|
end)
|
||||||
|
|
||||||
|
end
|
||||||
Reference in New Issue
Block a user