summaryrefslogtreecommitdiff
path: root/support/arara/scripts/rules/sketch.yaml
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /support/arara/scripts/rules/sketch.yaml
Initial commit
Diffstat (limited to 'support/arara/scripts/rules/sketch.yaml')
-rw-r--r--support/arara/scripts/rules/sketch.yaml29
1 files changed, 29 insertions, 0 deletions
diff --git a/support/arara/scripts/rules/sketch.yaml b/support/arara/scripts/rules/sketch.yaml
new file mode 100644
index 0000000000..a170aa20f2
--- /dev/null
+++ b/support/arara/scripts/rules/sketch.yaml
@@ -0,0 +1,29 @@
+!config
+# Arara, the cool TeX automation tool
+# Copyright (c) 2018, Paulo Roberto Massa Cereda
+# All rights reserved.
+#
+# This rule is part of arara.
+identifier: sketch
+name: Sketch
+authors:
+- Sergey Ulyanov
+- Paulo Cereda
+commands:
+- name: The Sketch software
+ command: >
+ @{
+ output = getBasename(file).concat('.tex');
+ return getCommand('sketch', options, file, '-o', output);
+ }
+arguments:
+- identifier: options
+ flag: >
+ @{
+ if (isList(parameters.options)) {
+ return parameters.options;
+ }
+ else {
+ throwError('I was expecting a list of options.');
+ }
+ }