mirror of
https://github.com/flatpak/flatpak.git
synced 2026-01-17 20:28:11 -05:00
We now test including modules, including doing so recursively, and find patches and source files from those.
26 lines
629 B
JSON
26 lines
629 B
JSON
{
|
|
"name": "module1",
|
|
"modules": [
|
|
{
|
|
"name": "module1-first",
|
|
"buildsystem": "simple",
|
|
"build-commands": [
|
|
"echo module1 > /app/ran_module1",
|
|
"echo module1 > /app/modify_me"
|
|
],
|
|
"sources": [
|
|
{
|
|
"type": "file",
|
|
"path": "data1"
|
|
},
|
|
{
|
|
"type": "patch",
|
|
"strip-components": 0,
|
|
"path": "data1.patch"
|
|
}
|
|
]
|
|
},
|
|
"include2/module2.json"
|
|
]
|
|
}
|