summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/arara/rules/animate.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/arara/rules/animate.yaml')
-rw-r--r--Master/texmf-dist/scripts/arara/rules/animate.yaml62
1 files changed, 62 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/arara/rules/animate.yaml b/Master/texmf-dist/scripts/arara/rules/animate.yaml
new file mode 100644
index 00000000000..ac6dc347bbe
--- /dev/null
+++ b/Master/texmf-dist/scripts/arara/rules/animate.yaml
@@ -0,0 +1,62 @@
+!config
+# Arara, the cool TeX automation tool
+# Copyright (c) 2018, Paulo Roberto Massa Cereda
+# All rights reserved.
+#
+# This rule is part of arara.
+identifier: animate
+name: Animate
+authors:
+- Chris Hughes
+- Paulo Cereda
+commands:
+- name: The Convert program
+ command: >
+ @{
+ prefix = [];
+ input = getBasename(file).concat('.pdf');
+ output = getBasename(file).concat('.gif');
+ if (isUnix()) {
+ prefix = [ program ];
+ }
+ else {
+ prefix = [ 'cmd', '/c', program ];
+ }
+ return getCommand(prefix, '-delay', delay, '-loop',
+ loop, '-density', density, options, input, output);
+ }
+arguments:
+- identifier: delay
+ flag: >
+ @{
+ parameters.delay
+ }
+ default: 10
+- identifier: loop
+ flag: >
+ @{
+ parameters.loop
+ }
+ default: 0
+- identifier: density
+ flag: >
+ @{
+ parameters.density
+ }
+ default: 300
+- identifier: program
+ flag: >
+ @{
+ parameters.program
+ }
+ default: convert
+- identifier: options
+ flag: >
+ @{
+ if (isList(parameters.options)) {
+ return parameters.options;
+ }
+ else {
+ throwError('I was expecting a list of options.');
+ }
+ }