Add .gitignore.
[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};
9author q{Robert 'phaylon' Sedlacek <rs@474.at>};
10all_from q{lib/namespace/clean.pm};
11
12build_requires q{Test::More}, '0.62';
13build_requires q{FindBin}, 0;
14
426562e2 15requires q{B::Hooks::EndOfScope}, '0.07';
40aef9d6 16requires q{Symbol}, 0;
17
472d4b1e 18auto_provides;
19auto_install;
20
21if (-e 'MANIFEST.SKIP') {
22
23 print "Creating README file\n";
24 system 'pod2text lib/namespace/clean.pm > README';
25
26 print "Adding author tests to 'make test' run\n";
27 tests 't/*.t t_author/*.t';
28}
29
40aef9d6 30WriteAll;