summaryrefslogtreecommitdiff
path: root/support/arara/scripts/rules/xindex.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'support/arara/scripts/rules/xindex.yaml')
-rw-r--r--support/arara/scripts/rules/xindex.yaml49
1 files changed, 49 insertions, 0 deletions
diff --git a/support/arara/scripts/rules/xindex.yaml b/support/arara/scripts/rules/xindex.yaml
new file mode 100644
index 0000000000..8ec73cf068
--- /dev/null
+++ b/support/arara/scripts/rules/xindex.yaml
@@ -0,0 +1,49 @@
+!config
+# Arara, the cool TeX automation tool
+# Copyright (c) 2020, Island of TeX
+# All rights reserved.
+#
+# This rule is part of arara.
+identifier: xindex
+name: xindex
+authors:
+- Island of TeX
+commands:
+- name: The xindex software
+ command: >
+ @{
+ return getCommand('xindex', config, language, options, input);
+ }
+arguments:
+- identifier: input
+ flag: >
+ @{
+ return parameters.input;
+ }
+- identifier: config
+ flag: >
+ @{
+ return [ '-c', parameters.config ];
+ }
+ default: >
+ @{
+ return [ '-c', 'cfg' ];
+ }
+- identifier: language
+ flag: >
+ @{
+ return [ '-l', parameters.language ];
+ }
+ default: >
+ @{
+ return [ '-l', 'en' ];
+ }
+- identifier: options
+ flag: >
+ @{
+ if (isList(parameters.options)) {
+ return parameters.options;
+ } else {
+ throwError('I was expecting a list of options.');
+ }
+ }