summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 20ab39b3aa33040a8fa3d16c5c3aad0e6b38d40b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use Catalyst::Build;
 
my $build = Catalyst::Build->new(
    create_makefile_pl => 'passthrough',
    license            => 'perl',
    module_name        => 'Bookmarks',
    requires           => { Catalyst => '5.10' },
    create_makefile_pl => 'passthrough',
    script_files       => [ glob('script/*') ],
    test_files         => [ glob('t/*.t'), glob('t/*/*.t') ]
);
$build->create_build_script;