File: Makefile.PL

package info (click to toggle)
libcurses-ui-perl 0.95-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 860 kB
  • ctags: 510
  • sloc: perl: 10,479; makefile: 51
file content (17 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME         => 'Curses::UI',
    VERSION_FROM => 'lib/Curses/UI.pm',
    DISTNAME     => 'Curses-UI',
    PREREQ_PM    => { 
        'Curses'           => 0,
	'Term::ReadKey'    => 0,
	'Test::Pod'        => 0,
	'Test::More'       => 0,
    },

    dist         => { COMPRESS => 'gzip', SUFFIX => 'gz' },
    clean        => { FILES => 'MANIFEST.bak' },
);