summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/arara/rules/biber.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/arara/rules/biber.yaml')
-rw-r--r--Master/texmf-dist/scripts/arara/rules/biber.yaml30
1 files changed, 24 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/arara/rules/biber.yaml b/Master/texmf-dist/scripts/arara/rules/biber.yaml
index ad27377e8bf..9ba02bc6b20 100644
--- a/Master/texmf-dist/scripts/arara/rules/biber.yaml
+++ b/Master/texmf-dist/scripts/arara/rules/biber.yaml
@@ -1,10 +1,28 @@
!config
-# Biber rule for arara
-# author: Marco Daniel
-# requires 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: biber
name: Biber
-command: <arara> biber @{options} "@{getBasename(file)}"
-arguments:
+authors:
+- Marco Daniel
+- Paulo Cereda
+commands:
+- name: The Biber reference management software
+ command: >
+ @{
+ return getCommand('biber', 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.');
+ }
+ }