File: Makefile.PL

package info (click to toggle)
libterm-visual-perl 0.06-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 200 kB
  • ctags: 113
  • sloc: perl: 2,281; makefile: 44
file content (17 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl

use ExtUtils::MakeMaker;

WriteMakefile
  ( NAME         => 'Term::Visual',
    AUTHOR       => 'Charles Ayres <lunartear@cpan.org>',
    ABSTRACT     => 'Curses split-terminal interface for applications.',
    VERSION_FROM => 'Visual.pm',
    PMLIBDIRS    => [ 'Visual' ],
    PREREQ_PM    => { POE          => 0.19,
                      Curses       => '',
                    },
    dist         => { COMPRESS     => 'gzip -9f',
                      SUFFIX       => 'gz',
                    },
  );