Alien::Build::rc - Alien::Build local config
Contents
Copyright And License
This software is copyright (c) 2011-2022 by Graham Ollis.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5
programming language system itself.
perl v5.40.0 2024-11-15 Alien::Build::rc(3pm)
Description
Alien::Build will load your "~/.alienbuild/rc.pl" file, if it exists before running the alienfile recipe.
This allows you to alter the behavior of Alien::Build based Aliens if you have local configuration
requirements. For example you can prompt before downloading remote content or fetch from a local mirror.
Functions
logx
log $message;
Send a message to the Alien::Build log.
preload_plugin
preload_plugin $plugin, @args;
Preload the given plugin, with arguments.
postload_plugin
postload_plugin $plugin, @args;
Postload the given plugin, with arguments.
preload
[deprecated]
preload $plugin;
Preload the given plugin.
postload
[deprecated]
postload $plugin;
Postload the given plugin.
Name
Alien::Build::rc - Alien::Build local config
See Also
Alien::Build::Plugin::Fetch::Cache
Alien::Build::Plugin::Fetch::Prompt
Alien::Build::Plugin::Fetch::Rewrite
Alien::Build::Plugin::Probe::Override
Synopsis
in your "~/.alienbuild/rc.pl":
preload 'Foo::Bar';
postload 'Baz::Frooble';
Version
version 2.84
