summaryrefslogtreecommitdiff
path: root/examples/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'examples/INSTALL')
-rw-r--r--examples/INSTALL22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/INSTALL b/examples/INSTALL
index e69de29..4ccd1d5 100644
--- a/examples/INSTALL
+++ b/examples/INSTALL
@@ -0,0 +1,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. \ No newline at end of file