summaryrefslogtreecommitdiff
path: root/support/arara/scripts/rules/dvipspdf.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'support/arara/scripts/rules/dvipspdf.yaml')
-rw-r--r--support/arara/scripts/rules/dvipspdf.yaml13
1 files changed, 6 insertions, 7 deletions
diff --git a/support/arara/scripts/rules/dvipspdf.yaml b/support/arara/scripts/rules/dvipspdf.yaml
index 4190b1869c..52df9731df 100644
--- a/support/arara/scripts/rules/dvipspdf.yaml
+++ b/support/arara/scripts/rules/dvipspdf.yaml
@@ -1,26 +1,25 @@
!config
# Arara, the cool TeX automation tool
-# Copyright (c) 2018, Paulo Roberto Massa Cereda
+# Copyright (c) 2020, Island of TeX
# All rights reserved.
#
# This rule is part of arara.
identifier: dvipspdf
name: DVIPSPDF
authors:
-- Marco Daniel
-- Paulo Cereda
+- Island of TeX
commands:
- name: The DVIPS program
command: >
@{
- base = getBasename(file).concat('.dvi');
- out = getBasename(file).concat('.ps');
+ base = getBasename(reference).concat('.dvi');
+ out = getBasename(reference).concat('.ps');
return getCommand('dvips', base, '-o', out, options1);
}
- name: The PS2PDF program
command: >
@{
- base = getBasename(file).concat('.ps');
+ base = getBasename(reference).concat('.ps');
out = getBasename(output).concat('.pdf');
return getCommand('ps2pdf', options2, base, '-o', out);
}
@@ -32,7 +31,7 @@ arguments:
}
default: >
@{
- file
+ reference
}
- identifier: options1
flag: >