2 Commits

Author SHA1 Message Date
86a034a4ac update flatpak metainfo
All checks were successful
Linux arm64 / Build (push) Successful in 2m13s
2025-07-28 10:31:06 +02:00
9208a5750d zip windows packing 2025-07-28 10:29:42 +02:00
3 changed files with 40 additions and 20 deletions

View File

@@ -5,8 +5,8 @@
<name>jminos</name>
<developer_name>Zulianc</developer_name>
<summary>Amazing stacker game by the J </summary>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-only</project_license>
<!-- <metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-only</project_license> -->
<url type="homepage">https://git.ale-pri.com/TetrisNerd/jminos</url>
<description>
<p>
@@ -22,7 +22,7 @@
<li>IRS, IHS, infinite hold, and other leniency mechanics!</li>
<li>Customizable board size!</li>
<li>Customizable keybinds!</li>
<li>Very bland interface!! (i&#39;m not a designer)</li>
<li>Very bland interface!! (i'm not a designer)</li>
</ul>
<p>Available gamemodes</p>
<ul>
@@ -47,15 +47,15 @@
<image>https://git.ale-pri.com/TetrisNerd/jminos/raw/branch/main/doc/readme/big_piece.png</image>
</screenshot>
<screenshot>
<caption>Dark Settings</caption>
<caption>Pieces selection</caption>
<image>https://git.ale-pri.com/TetrisNerd/jminos/media/branch/main/doc/readme/pieces_selection.png</image>
</screenshot>
<screenshot>
<caption>Light Interface</caption>
<caption>Rotations</caption>
<image>https://git.ale-pri.com/TetrisNerd/jminos/media/branch/main/doc/readme/rotations.gif</image>
</screenshot>
<screenshot>
<caption>Light Grid View</caption>
<caption>Rotation_0</caption>
<image>https://git.ale-pri.com/TetrisNerd/jminos/media/branch/main/doc/readme/rotation_0.gif</image>
</screenshot>
</screenshots>

View File

@@ -52,20 +52,7 @@ if is_plat("mingw") then
add_ldflags("-static-libstdc++", "-static")
end
xpack("jminos")
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)
includes("./xpack.lua")
--
-- If you want to known more usage about xmake, please see https://xmake.io

33
xpack.lua Normal file
View 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