diff --git a/com.example.first_application.json b/com.example.first_application.json index a1adb68..e3743e7 100644 --- a/com.example.first_application.json +++ b/com.example.first_application.json @@ -1,36 +1,21 @@ { "app-id": "com.example.first_application", "runtime": "org.gnome.Platform", - "runtime-version": "master", + "runtime-version": "3.30", "sdk": "org.gnome.Sdk", "command": "your-first-application", "finish-args": [ "--socket=wayland" ], - "build-options": { - "env": { - "V": "1" - } - }, - "cleanup": [ - "/lib/pkgconfig", - "/man", - "/share/doc", - "/share/gtk-doc", - "/share/man", - "/share/pkgconfig" - ], "modules": [ { - "name": "first-application", + "name": "first_application", "buildsystem": "meson", "builddir": true, - "subdir": "First_Application", "sources": [ { - "branch": "master", - "type": "git", - "url": "https://source.puri.sm/david.boddie/tutorials.git" + "type": "dir", + "path": "." } ] } diff --git a/meson.build b/meson.build index d2d2b8e..98ffee9 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('first-application', version: '0.1.0', - meson_version: '>= 0.40.0', + meson_version: '>= 0.48.0', ) subdir('data')