use warnings; use strict; use Module::Build; Module::Build->new( module_name => "Crypt::Eksblowfish", license => "perl", dist_author => [ "Solar Designer (solar at openwall.com)", "Andrew Main (Zefram) ", ], build_requires => { "ExtUtils::CBuilder" => "0.15", "Module::Build" => 0, "Test::More" => 0, "perl" => "5.006", "strict" => 0, "warnings" => 0, }, requires => { "Carp" => 0, "Class::Mix" => "0.001", "Exporter" => 0, "MIME::Base64" => "2.21", "XSLoader" => 0, "parent" => 0, "perl" => "5.006", "strict" => 0, "warnings" => 0, }, dynamic_config => 0, meta_add => { distribution_type => "module" }, create_makefile_pl => "passthrough", sign => 1, )->create_build_script; exit 0;