The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

    perl-configure - Answer perl's Configure questions automatically

SYNOPSIS

    cd perl-x.y.z
    perl-configure token=value token=value ...

    # or
    perl-configure -f configuration.yml

OPTIONS

-h

Prints this manual page in text format.

-v

Verbose mode (Log4perl activated).

-f config.yml

Use a YAML file config.yml with key/value pairs instead of providing them on the command line. Additional key=value arguments after this option can be provided and will override the options set in the YAML file.

An example YAML file could look like this:

    # config.yml
    threads: y
    libs:    '-lnsl -lgdbm -ldb'
    ... 

DESCRIPTION

perl-configure is a utility script to run Perl::Configure from the command line.

EXAMPLES

  $ perl-configure prefix=/path optimizer="-g -O2"
  $ perl-configure -f myconf.yml

LEGALESE

Copyright 2006, 2007 by Mike Schilli, all rights reserved. This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

2006, Mike Schilli <cpan@perlmeister.com>