File: Makefile.PL

package info (click to toggle)
libtext-vimcolor-perl 0.11-2
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 172 kB
  • ctags: 32
  • sloc: perl: 430; xml: 12; ansic: 9; sql: 3; makefile: 2; sh: 1
file content (19 lines) | stat: -rw-r--r-- 373 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl -w

use strict;
use ExtUtils::MakeMaker;

WriteMakefile(
   NAME => 'Text::VimColor',
   ABSTRACT_FROM => 'lib/Text/VimColor.pm',
   VERSION_FROM => 'lib/Text/VimColor.pm',
   AUTHOR => 'Geoff Richards <qef@laxan.com>',
   NO_META => 1,
   EXE_FILES => [ 'text-vimcolor' ],

   PREREQ_PM => {
      'Path::Class' => 0.02,
   },
);

# vi:ts=3 sw=3 expandtab