File: Makefile.PL

package info (click to toggle)
libvendorlib-perl 0.10-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 200 kB
  • ctags: 147
  • sloc: perl: 1,951; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 399 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
use inc::Module::Install 0.91;

name     'vendorlib';
all_from 'lib/vendorlib.pm';
author   q{Rafael Kitover <rkitover@cpan.org>};
license  'perl';

build_requires 'Test::More';

if ($Module::Install::AUTHOR) {
    system("pod2text lib/vendorlib.pm > README");
}

realclean_files 'README';

auto_provides;
auto_install;

resources repository => 'git://github.com/rkitover/vendorlib.git';

WriteAll;