File: Makefile.PL

package info (click to toggle)
apt-show-versions 0.10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 124 kB
  • ctags: 7
  • sloc: perl: 262; makefile: 53; sh: 31
file content (13 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

# List here scripts that should be installed 
my @scripts = ("./apt-show-versions");

WriteMakefile(
    'NAME'	=> 'apt-show-versions',
    'VERSION_FROM' => './apt-show-versions',
    'EXE_FILES' => \@scripts,
    'MAN3PODS' => { },
);