-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
41 lines (37 loc) · 964 Bytes
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use ExtUtils::MakeMaker;
rename('README.md','README') if -f 'README.md';
WriteMakefile(
NAME => 'Fuse::PerlSSH::FS',
AUTHOR => 'Clipland (clipland@cpan.org)',
ABSTRACT => 'Mount a remote filesystem via FUSE + PerlSSH',
VERSION_FROM => 'lib/Fuse/PerlSSH/FS.pm', # finds \$VERSION
LICENSE => 'gpl', # as close as it gets to GPL3+AL2
PREREQ_PM => {
'Fuse' => '0.14',
'File::ExtAttr' => '1.09',
'IPC::PerlSSH' => '0.16',
'Getopt::Long' => 0,
'Pod::Usage' => 0,
'Data::Dumper' => 0,
'Daemon::Daemonize' => 0,
'Fcntl' => 0,
'POSIX' => 0,
},
BUILD_REQUIRES => {
'Test::Virtual::Filesystem' => 0,
},
EXE_FILES => [
'bin/perlsshfs'
],
META_MERGE => {
resources => {
repository => 'https://github.com/clipland/fuse-perlssh-fs',
},
},
dist => {
POSTOP => 'perl -e "rename(\'README\',\'README.md\') if -f \'README\'"',
},
realclean => {
POSTOP => 'perl -e "rename(\'README\',\'README.md\') if -f \'README\'"',
},
);