summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 3637b78355fa12da487cf0d014ad596e60a15e0b (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
#!/usr/bin/perl

use Module::Build;

Module::Build->new(
  dist_name     => 'TUWF',
  dist_version  => '1.0',
  dist_author   => 'Yoran Heling <yorhel@cpan.org>',
  dist_abstract => 'The Ultimate Website Framework',
  license       => 'mit',
  requires => {
    perl => '5.8.0',
  },
  recommends => {
    'PerlIO::gzip'    => 0,
    'FCGI'            => 0,
    'DBI'             => 0,
  },
  meta_merge => {
    resources => {
      repository => 'http://g.blicky.net/tuwf.git/'
    },
  },
  create_makefile_pl => 'traditional',
)->create_build_script;