NAME
ExtUtils::BuildRC - A reader for Build.PL configuration files
VERSION
version 0.001
DESCRIPTION
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.
SYNOPSYS
use ExtUtils::BuildRC 'read_config';
my $config = read_config();
my @build_options = (@{ $config->{build} }, @{ $config->{'*'} });
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.