diff --git a/build-aux/flatpak/com.github.alainm23.planner.json b/build-aux/flatpak/com.github.alainm23.planner.json index edecb349e..368c8fe15 100644 --- a/build-aux/flatpak/com.github.alainm23.planner.json +++ b/build-aux/flatpak/com.github.alainm23.planner.json @@ -118,12 +118,11 @@ { "name": "planner", "buildsystem": "meson", - "sources": [ - { - "type": "git", - "url": "https://github.com/alainm23/planner.git" - } - ] + "sources": [{ + "type": "archive", + "url": "https://github.com/alainm23/planner/archive/2.0.2.zip", + "sha256": "d9d45c297d09afffbadae28434f19c2244ef726a0b6295bf2932cd85b7afecdd" + }] } ] } diff --git a/data/meson.build b/data/meson.build index 5571363b5..a46deb164 100644 --- a/data/meson.build +++ b/data/meson.build @@ -42,15 +42,3 @@ i18n.merge_file( install: true, install_dir: join_paths(get_option('datadir'), 'metainfo') ) - -test ( - 'Validate desktop file', - find_program('desktop-file-validate'), - args: join_paths(meson.current_build_dir (), meson.project_name() + '.desktop') -) - -test ( - 'Validate appdata file', - find_program('appstreamcli'), - args: ['validate', join_paths(meson.current_build_dir (), meson.project_name() + '.appdata.xml')] -)