summaryrefslogtreecommitdiffstats
path: root/examples/packages/example_3/c/pkg.toml
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-11-14 19:03:21 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-11-14 19:03:21 +0100
commit49d0c1f7fa51ced87547fd75f904a52fc6f53b90 (patch)
treefb60122af293b6b35175ff884978c89c6efb7376 /examples/packages/example_3/c/pkg.toml
parentda12a96384f2eca763e0a6bc7ec76058a25a7fb0 (diff)
Add another example configuration
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'examples/packages/example_3/c/pkg.toml')
-rw-r--r--examples/packages/example_3/c/pkg.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/packages/example_3/c/pkg.toml b/examples/packages/example_3/c/pkg.toml
new file mode 100644
index 0000000..538c576
--- /dev/null
+++ b/examples/packages/example_3/c/pkg.toml
@@ -0,0 +1,14 @@
+name = "c"
+version = "3"
+
+[phases]
+package.script = '''
+ mkdir /outputs
+ echo "#BUTIDO:PHASE:package"
+ echo "#BUTIDO:PROGRESS:90"
+
+ touch /outputs/c-3.pkg
+
+ echo "#BUTIDO:PROGRESS:100"
+ echo "#BUTIDO:STATE:OK:finished"
+'''