The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl

use strict;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME         => 'Config-SL',
    VERSION_FROM => 'lib/Config/SL.pm',
    PREREQ_PM    => { 'Config::ApacheFormat' => 1.2, },
    ABSTRACT     => 'Configuration abstraction for SL libraries',
    AUTHOR       => 'Fred Moyer <fred@slwifi.com>',
);
1;