blob: 4ccd1d5bac0f1627a19954e80c1d2d01ebcdc16f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[package]
name = "my-package"
version = "1.0.0"
arch = "X86_64"
[install]
path = "/usr/bin/my-package"
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.
|