forked from pacstall/pacup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
34 lines (33 loc) · 916 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
use ExtUtils::MakeMaker;
use strict;
use warnings qw(all);
WriteMakefile(
NAME => 'Pacup',
ABSTRACT => 'Pacscript Updater',
VERSION_FROM => 'pacup',
LICENSE => 'gpl_3',
AUTHOR => 'Vigress <[email protected]>',
EXE_FILES => ['pacup', 'scripts/pacup-srcinfo'],
INSTALLDIRS => 'vendor',
dist => { COMPRESS => 'gzip', SUFFIX => 'gz' },
PREREQ_PM => {
"Cwd" => 0,
"Data::Compare" => 0,
"Dpkg::Version" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Basename" => 0,
"File::chdir" => 0,
"File::Copy" => 0,
"File::Path" => 0,
"File::Temp" => 0,
"Getopt::Long" => 0,
"IPC::System::Simple" => 0,
"JSON" => 0,
"List::MoreUtils" => 0,
"List::Util" => 0,
"LWP::UserAgent" => 0,
"Pod::Usage" => 0,
"Term::ANSIColor" => 0,
"Term::ProgressBar" => 0,
}
);