# platforms file ## Format ``` { "install_instructions": { "inst_set_1": [ "line 1", "line 2" ], "inst_set_2":[ "line 1", "line 2", "line 3", "line 4" ] }, "platforms": { "Debian NN": { "codename": "", "docker": { "directory": "", "image_basename": ", "build_options": { "image_from": "", "image_prepare_script": "" } }, "ppa": { "filters": [""], "install_instructions": "inst_set_1" } }, "Some crosscompile image": { "codename": "", "cmake_toolchain": "", "docker": { "directory": "", "image_basename": ", "build_options": { "image_from": "", "image_prepare_script": "", "arch": "", "toolchain": "", "triplet": "" } }, "ppa": { "filters": [""], "install_instructions": "inst_set_2" } } } } ``` [Debian codenames](https://wiki.debian.org/DebianReleases) [Debian arch names](https://wiki.debian.org/SupportedArchitectures) [Debian multiarch names](https://wiki.debian.org/Multiarch/Tuples) You can add any values in `docker.build_options` object, all these values passed to docker on building `ppa.install_instructions` will be replaced to corresponding `install_instructions` array, or you can set array of strings directly: ``` "ppa": { "install_instructions": ["line1", "line2"] } ```