-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
27 lines (25 loc) · 758 Bytes
/
Makefile.PL
File metadata and controls
27 lines (25 loc) · 758 Bytes
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
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
# Write Makefile
WriteMakefile(
NAME => 'BitBack',
ABSTRACT => 'Multi Platform Backup Utility',
AUTHOR => 'Mariano Wahlmann <dichoso@gmail.com>',
VERSION_FROM => 'lib/BitBack.pm',
PREREQ_PM => {
'Test::More' => 0,
'Gtk2' => 0,
'IO::Compress::Zip' => 0,
'IO::Uncompress::Unzip' => 0,
'File::Spec' => 0,
'Digest::MD5' => 0,
'IO::File' => 0,
'Crypt::CBC' => 0,
'Crypt::Rijndael' => 0,
'Carp' => 0,
},
EXE_FILES => ['bin/bitback'],
test => { TESTS => 't/*.t' }
);