File: Build.PL

package info (click to toggle)
pangzero 1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,596 kB
  • sloc: perl: 4,143; makefile: 4
file content (31 lines) | stat: -rw-r--r-- 877 bytes parent folder | download
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
30
31
use strict;
use warnings;
use Module::Build;

my $build = Module::Build->new(
  module_name          => 'Games::PangZero',
  all_from             => 'lib/Games/PangZero.pm',
  dist_abstract        => 'a fast-paced action game about popping balloons with a harpoon',
  dist_author          => [
    'UPi <upi@sourceforge.net>',
    'SAdam <sadam@apocalypse.rulez.org>',
    'DaniGM <danigm@gmail.com>',
    'Elio Blanca <eblanca76@users.sourceforge.net>',
  ],
  license              => 'gpl',
  requires             => {
    'File::ShareDir'   => '0',
    'File::Spec'       => '0',
    'Time::HiRes'      => '0',
    'SDL'              => '2.536',
  },
  configure_requires   => {
    'Module::Build'    => '0.38',
  },
  meta_merge => {
    resources  => {
      repository => 'http://github.com/kthakore/pangzero'
    }
  },
  share_dir => 'data',
)->create_build_script();