The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'JSON::SL',
    AUTHOR              => q{M. Nunberg <mnunberg@haskalah.org>},
    VERSION_FROM        => 'lib/JSON/SL.pm',
    ABSTRACT_FROM       => 'lib/JSON/SL.pm',
    META_MERGE          => {
        resources => {
            repository => 'https://github.com/mnunberg/perl-JSON-SL/'
        }
    },

    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
#    OPTIMIZE            => '-Wall -ggdb3 -O3 -std=gnu89 -pedantic',
    PREREQ_PM => {
        'Test::More' => 0,
        'Constant::Generate' => '0.16'
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'JSON-SL-*' },
);