summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml')
-rw-r--r--Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml31
1 files changed, 25 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml b/Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml
index 1d2cd053101..4dee1e1567b 100644
--- a/Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml
+++ b/Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml
@@ -1,10 +1,29 @@
!config
-# MakeGlossaries rule for arara
-# author: Marco Daniel
-# requres arara 3.0+
+# Arara, the cool TeX automation tool
+# Copyright (c) 2018, Paulo Roberto Massa Cereda
+# All rights reserved.
+#
+# This rule is part of arara.
identifier: makeglossaries
name: MakeGlossaries
-command: <arara> makeglossaries @{options} "@{getBasename(file)}"
-arguments:
+authors:
+- Marco Daniel
+- Nicola Talbot
+- Paulo Cereda
+commands:
+- name: The MakeGlossaries software
+ command: >
+ @{
+ return getCommand('makeglossaries', options, getBasename(file));
+ }
+arguments:
- identifier: options
- flag: <arara> @{parameters.options}
+ flag: >
+ @{
+ if (isList(parameters.options)) {
+ return parameters.options;
+ }
+ else {
+ throwError('I was expecting a list of options.');
+ }
+ }