Add part of the packaging section

Fix meson.build project version requirement to suppress warnings.
Rename the application ID for consistency.
This commit is contained in:
David Boddie 2019-01-19 01:51:20 +01:00
parent 065649aaad
commit adcb21af62
2 changed files with 5 additions and 20 deletions

View file

@ -1,36 +1,21 @@
{ {
"app-id": "com.example.first_application", "app-id": "com.example.first_application",
"runtime": "org.gnome.Platform", "runtime": "org.gnome.Platform",
"runtime-version": "master", "runtime-version": "3.30",
"sdk": "org.gnome.Sdk", "sdk": "org.gnome.Sdk",
"command": "your-first-application", "command": "your-first-application",
"finish-args": [ "finish-args": [
"--socket=wayland" "--socket=wayland"
], ],
"build-options": {
"env": {
"V": "1"
}
},
"cleanup": [
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig"
],
"modules": [ "modules": [
{ {
"name": "first-application", "name": "first_application",
"buildsystem": "meson", "buildsystem": "meson",
"builddir": true, "builddir": true,
"subdir": "First_Application",
"sources": [ "sources": [
{ {
"branch": "master", "type": "dir",
"type": "git", "path": "."
"url": "https://source.puri.sm/david.boddie/tutorials.git"
} }
] ]
} }

View file

@ -1,6 +1,6 @@
project('first-application', project('first-application',
version: '0.1.0', version: '0.1.0',
meson_version: '>= 0.40.0', meson_version: '>= 0.48.0',
) )
subdir('data') subdir('data')