2011-10-02 09:57:47 +00:00
|
|
|
use Module::Build;
|
|
|
|
|
|
|
|
my $build = Module::Build->new(
|
|
|
|
module_name => 'Slic3r',
|
|
|
|
dist_abstract => 'STL-to-GCODE translator',
|
|
|
|
dist_author => 'Alessandro Ranellucci <aar@cpan.org>',
|
|
|
|
dist_version => '0.1',
|
|
|
|
license => 'perl',
|
|
|
|
requires => {
|
|
|
|
'CAD::Format::STL' => '0',
|
2011-10-03 09:55:32 +00:00
|
|
|
'File::Basename' => '0',
|
2011-10-02 09:57:47 +00:00
|
|
|
'Getopt::Long' => '0',
|
2011-10-03 09:55:32 +00:00
|
|
|
'Math::Clipper' => '1.01',
|
2011-10-02 09:57:47 +00:00
|
|
|
'Math::Geometry::Planar' => '0',
|
2011-10-03 11:08:43 +00:00
|
|
|
'Math::Geometry::Planar::Offset' => '0',
|
2011-10-02 09:57:47 +00:00
|
|
|
'Moo' => '0',
|
|
|
|
'Time::HiRes' => '0',
|
2011-10-03 09:55:32 +00:00
|
|
|
'XXX' => '0',
|
2011-10-02 09:57:47 +00:00
|
|
|
},
|
|
|
|
build_requires => {
|
|
|
|
'Test::More' => '0.10',
|
|
|
|
},
|
|
|
|
script_files => ['slic3r.pl'],
|
|
|
|
);
|
|
|
|
$build->dispatch('installdeps');
|
|
|
|
$build->dispatch('test', verbose => 0);
|
|
|
|
|
|
|
|
$build->create_build_script;
|