summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 30193bed1ba6a6652dcb87e5136156a9c510ad2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/perl

use Module::Build;

Module::Build->new(
  dist_name     => 'TUWF',
  dist_version  => '1.4',
  dist_author   => 'Yoran Heling <projects@yorhel.nl>',
  dist_abstract => 'The Ultimate Website Framework',
  license       => 'mit',
  requires => {
    perl => '5.10.0',
  },
  recommends => {
    'DBI'                  => 0,
    'FCGI'                 => 0,
    'HTTP::Server::Simple' => 0,
    'JSON::XS'             => 0,
    'PerlIO::gzip'         => 0,
  },
  meta_merge => {
    resources => {
      repository => 'https://code.blicky.net/yorhel/tuwf',
      homepage   => 'https://dev.yorhel.nl/tuwf'
    },
  },
  create_makefile_pl => 'traditional',
)->create_build_script;