mirror of
https://github.com/flatpak/flatpak.git
synced 2026-01-24 15:48:18 -05:00
Any build-args specified in the manifest should be used during the cleanup and platform-cleanup stages. This is because if you are using QEMU to build for another architecture, for example, you need to pass --bind-mount in the build-args, and the bind mount also needs to be present while running cleanup commands.
20 lines
437 B
JSON
20 lines
437 B
JSON
{
|
|
"build-runtime": true,
|
|
"id": "org.test.Hello.Sdk",
|
|
"id-platform": "org.test.Hello.Platform",
|
|
"runtime": "org.test.Platform",
|
|
"sdk": "org.test.Sdk",
|
|
"tags": ["test"],
|
|
"cleanup-commands": [ "fdghksdfjhsdfkg" ],
|
|
"cleanup-platform-commands": [ "sdjfgkafyewgdbvhsail" ],
|
|
"build-options": {
|
|
"build-args": ["--help"]
|
|
},
|
|
|
|
"modules": [
|
|
{
|
|
"name": "empty"
|
|
}
|
|
]
|
|
}
|