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.
20 lines
377 B
JSON
20 lines
377 B
JSON
{
|
|
"name": "module2",
|
|
"buildsystem": "simple",
|
|
"ensure-writable": [ "/modify_me"],
|
|
"build-commands": [
|
|
"echo module2 > /app/ran_module2",
|
|
"echo module2 > /app/modify_me"
|
|
],
|
|
"sources": [
|
|
{
|
|
"type": "file",
|
|
"path": "data2"
|
|
},
|
|
{
|
|
"type": "patch",
|
|
"path": "data2.patch"
|
|
}
|
|
]
|
|
}
|