summaryrefslogtreecommitdiff
path: root/support/arara/scripts/rules/ps2pdf.yaml
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /support/arara/scripts/rules/ps2pdf.yaml
Initial commit
Diffstat (limited to 'support/arara/scripts/rules/ps2pdf.yaml')
-rw-r--r--support/arara/scripts/rules/ps2pdf.yaml39
1 files changed, 39 insertions, 0 deletions
diff --git a/support/arara/scripts/rules/ps2pdf.yaml b/support/arara/scripts/rules/ps2pdf.yaml
new file mode 100644
index 0000000000..656f7e22c3
--- /dev/null
+++ b/support/arara/scripts/rules/ps2pdf.yaml
@@ -0,0 +1,39 @@
+!config
+# Arara, the cool TeX automation tool
+# Copyright (c) 2018, Paulo Roberto Massa Cereda
+# All rights reserved.
+#
+# This rule is part of arara.
+identifier: ps2pdf
+name: PS2PDF
+authors:
+- Marco Daniel
+- Paulo Cereda
+commands:
+- name: The PS2PDF program
+ command: >
+ @{
+ infile = getBasename(file).concat('.ps');
+ outfile = getBasename(output).concat('.pdf');
+ return getCommand('ps2pdf', options, infile, outfile);
+ }
+arguments:
+- identifier: output
+ flag: >
+ @{
+ parameters.output
+ }
+ default: >
+ @{
+ file
+ }
+- identifier: options
+ flag: >
+ @{
+ if (isList(parameters.options)) {
+ return parameters.options;
+ }
+ else {
+ throwError('I was expecting a list of options.');
+ }
+ }