~ubuntu-branches/ubuntu/wily/libxml-descent-perl/wily-proposed

« back to all changes in this revision

Viewing changes to Build.PL

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2014-01-11 00:30:25 UTC
  • Revision ID: package-import@ubuntu.com-20140111003025-aalks78x3fukf5ce
Tags: upstream-1.04
ImportĀ upstreamĀ versionĀ 1.04

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
require 5.006001;
 
2
 
 
3
use strict;
 
4
use warnings;
 
5
use Module::Build;
 
6
 
 
7
use lib 'inc';
 
8
 
 
9
use MyBuilder;
 
10
 
 
11
my $builder = MyBuilder->new(
 
12
  module_name       => 'XML::Descent',
 
13
  sign              => 1,
 
14
  license           => 'perl',
 
15
  dist_author       => 'Andy Armstrong <andy@hexten.net>',
 
16
  dist_version_from => 'lib/XML/Descent.pm',
 
17
  requires          => {
 
18
    'Test::More'        => 0,
 
19
    'XML::TokeParser'   => 0,
 
20
    'Test::Differences' => 0,
 
21
  },
 
22
  add_to_cleanup => ['XML-Descent-*'],
 
23
);
 
24
 
 
25
$builder->create_build_script();