!config
# Arara, the cool TeX automation tool
# Copyright (c) 2023, Island of TeX
# All rights reserved.
#
# This rule is part of arara.
identifier: bibtex8
name: BibTeX8
authors:
- Island of TeX
commands:
- name: An 8-bit implementation of BibTeX 0.99 with a very large capacity
  command: >
    @{
        return getCommand('bibtex8', options, getBasename(reference.fileName));
    }
arguments:
- identifier: options
  flag: >
    @{
        if (isList(parameters.options)) {
            return parameters.options;
        }
        else {
            throwError('I was expecting a list of options.');
        }
    }