File: Makefile.PL

package info (click to toggle)
ftp-upload 1.5%2Bnmu2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 64 kB
  • ctags: 22
  • sloc: perl: 259; makefile: 54
file content (14 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# $Id: Makefile.PL,v 1.1 1999-02-07 22:23:59 roderick Exp $

use ExtUtils::MakeMaker;

WriteMakefile(
    EXE_FILES		=> ['ftp-upload'],
    NAME		=> 'ftp-upload',
    PREREQ_PM		=> { 'Net::FTP' => 0 },
    VERSION_FROM	=> 'ftp-upload',
);

sub MY::dist_core {
    return q(dist:; @echo "use dpkg-buildpackge, not make dist" >&2; false);
}