!config # Arara, the cool TeX automation tool # Copyright (c) 2020, Island of TeX # All rights reserved. # # This rule is part of arara. identifier: xindex name: xindex authors: - Island of TeX commands: - name: The xindex software command: > @{ return getCommand('xindex', config, language, options, input); } arguments: - identifier: input flag: > @{ return parameters.input; } - identifier: config flag: > @{ return [ '-c', parameters.config ]; } default: > @{ return [ '-c', 'cfg' ]; } - identifier: language flag: > @{ return [ '-l', parameters.language ]; } default: > @{ return [ '-l', 'en' ]; } - identifier: options flag: > @{ if (isList(parameters.options)) { return parameters.options; } else { throwError('I was expecting a list of options.'); } }