[package] name = "my-package" version = "1.0.0" arch = "X86_64" [install] path = "/usr/bin/my-package" dependencies = ["package", "i2pd", "llvm-19-devel", "etc..."] # Leave it empty if there are no dependencies user = "root" group = "root" mode = "755" # Also [install] can be # path = "/usr/bin/my-package" # user = "root" # group = "root" # mode = "755" # custom_script = "./install.sh" OR # custom_script = """ # echo "Installing my-package" # sudo apt-get install my-package # """ # If there is a custom_script field, mesk will not automatically install your package and other fields in [install] will not be required.