Deprecated.
NAME
ExtUtils::BuildRC - *DEPRECATED* A reader for Build.PL configuration files
VERSION
version 0.005
SYNOPSIS
use ExtUtils::BuildRC 'read_config';
my $config = read_config();
my @build_options = (@{ $config->{build} }, @{ $config->{'*'} });
DESCRIPTION
.modulebuildrc has been deprecated at the QA Hackathon 2013, this is part of the so called "Lancaster Consensus".
This module parses Build.PL configuration files.
FUNCTIONS
parse_file($filename)
Read a Build.PL compatible configuration file. It returns a hash with the actions as keys and arrayrefs of arguments as values.
read_config()
Read the first Build.PL configuration file that's available in any of the locations defined by the Build.PL Spec. The data is returned in the same format as parse_file
does.
AUTHOR
Leon Timmermans <fawaka@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Leon Timmermans.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.