diff --git a/flatpak/com.theboisclub.gen1recomp.metainfo.xml b/flatpak/com.theboisclub.gen1recomp.metainfo.xml index 315a863e..2e12e5b5 100644 --- a/flatpak/com.theboisclub.gen1recomp.metainfo.xml +++ b/flatpak/com.theboisclub.gen1recomp.metainfo.xml @@ -4,7 +4,7 @@ gen1recomp Pokémon Gen 1/2 recompilation CC0-1.0 - LicenseRef-proprietary + MIT The Bois Club

@@ -14,7 +14,8 @@

com.theboisclub.gen1recomp.desktop - https://github.com/bryanthaboi/gen1recomp + https://gen1re.com/ + https://github.com/bryanthaboi/gen1recomp Launcher diff --git a/tests/engine/flatpak_manifest_test.lua b/tests/engine/flatpak_manifest_test.lua index d8b04ab1..ab81ee57 100644 --- a/tests/engine/flatpak_manifest_test.lua +++ b/tests/engine/flatpak_manifest_test.lua @@ -21,5 +21,13 @@ local xml = meta:read("*a") meta:close() check(xml:find("", 1, true), "AppStream metainfo includes releases") check(xml:find("MIT", 1, true), + "AppStream metainfo declares MIT project license") +check(not xml:find("LicenseRef-proprietary", 1, true), + "AppStream metainfo must not claim proprietary") +check(xml:find('url type="homepage">https://gen1re.com/', 1, true), + "AppStream metainfo homepage is gen1re.com") +check(xml:find('url type="vcs-browser">https://github.com/bryanthaboi/gen1recomp', 1, true), + "AppStream metainfo vcs-browser points at the public repo") print("ok")