changelog and version bump
[p5sagit/namespace-clean.git] / Makefile.PL
CommitLineData
40aef9d6 1#!/usr/bin/env perl
2use warnings;
3use strict;
4
5use inc::Module::Install;
6
7name q{namespace-clean};
8license q{perl};
bafb291c 9author q{Robert 'phaylon' Sedlacek <rs@474.at>};
40aef9d6 10all_from q{lib/namespace/clean.pm};
11
226432f6 12build_requires q{Test::More}, '0.88';
40aef9d6 13build_requires q{FindBin}, 0;
14
426562e2 15requires q{B::Hooks::EndOfScope}, '0.07';
16d8eca5 16requires q{Package::Stash}, '0.03';
07fbef3d 17requires q{Sub::Name}, '0.04';
18requires q{Sub::Identify}, '0.04';
40aef9d6 19
472d4b1e 20auto_provides;
472d4b1e 21
22if (-e 'MANIFEST.SKIP') {
23
24 print "Creating README file\n";
25 system 'pod2text lib/namespace/clean.pm > README';
26
27 print "Adding author tests to 'make test' run\n";
28 tests 't/*.t t_author/*.t';
29}
30
40aef9d6 31WriteAll;