File: Makefile.PL

package info (click to toggle)
libipc-sharedcache-perl 1.3-9
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 244 kB
  • sloc: perl: 1,386; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 466 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;

WriteMakefile(
              'NAME'	=> 'IPC::SharedCache',
              'VERSION_FROM' => 'SharedCache.pm', # finds $VERSION
              'PREREQ_PM' => { 
                              'IPC::ShareLite' => '0.06',
                              'Storable' => '0',
                              'Carp' => '0',
                              'IPC::SysV' => '0'
                             },
              
                              
);