~ubuntu-branches/ubuntu/natty/libsignatures-perl/natty

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Niebur
  • Date: 2009-05-18 20:34:44 UTC
  • Revision ID: james.westby@ubuntu.com-20090518203444-ee3iqibpk6uxo7u8
Tags: upstream-0.05
ImportĀ upstreamĀ versionĀ 0.05

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use strict;
 
2
use warnings;
 
3
use inc::Module::Install;
 
4
use ExtUtils::Depends;
 
5
 
 
6
name 'signatures';
 
7
all_from 'lib/signatures.pm';
 
8
 
 
9
requires 'B::Hooks::OP::Check' => '0.17';
 
10
requires 'B::Hooks::OP::PPAddr';
 
11
requires 'B::Hooks::Parser' => '0.07';
 
12
requires 'B::Hooks::EndOfScope' => '0.08';
 
13
 
 
14
build_requires 'B::Hooks::OP::Check' => '0.17';
 
15
build_requires 'B::Hooks::OP::PPAddr';
 
16
build_requires 'B::Hooks::Parser' => '0.07';
 
17
 
 
18
configure_requires 'ExtUtils::Depends';
 
19
configure_requires 'B::Hooks::OP::Check' => '0.17';
 
20
configure_requires 'B::Hooks::OP::PPAddr';
 
21
configure_requires 'B::Hooks::Parser' => '0.07';
 
22
 
 
23
my $pkg = ExtUtils::Depends->new('signatures', 'B::Hooks::OP::Check', 'B::Hooks::OP::PPAddr', 'B::Hooks::Parser');
 
24
$pkg->add_xs('signatures.xs');
 
25
$pkg->add_pm('lib/signatures.pm' => '$(INST_LIB)/signatures.pm');
 
26
 
 
27
makemaker_args($pkg->get_makefile_vars);
 
28
 
 
29
extra_tests();
 
30
 
 
31
repository 'git://github.com/rafl/signatures.git';
 
32
bugtracker 'http://rt.cpan.org/Public/Dist/Display.html?Name=signatures';
 
33
 
 
34
WriteAll;