summaryrefslogtreecommitdiff
path: root/examples/INSTALL
blob: 76f08a04207c605d43a01604371db0bed707cd82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "my-package"
version = "1.0.0"
arch = "X86_64"
descr = "Just example INSTALL script"
license = "BSD-2-Clause"

[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.