You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
456 B
17 lines
456 B
10 years ago
|
use ExtUtils::MakeMaker;
|
||
|
|
||
|
WriteMakefile(
|
||
|
AUTHOR => ["Alex 'AdUser' Z <aduser\@cpan.org>"],
|
||
|
NAME => 'twatch-lite',
|
||
|
ABSTRACT => 'periodically polls RSS/ATOM feeds and cherry-picks wanted torrent files',
|
||
|
VERSION_FROM => 'twatch-lite',
|
||
|
LICENSE => 'perl_5',
|
||
|
EXE_FILES => ['twatch-lite'],
|
||
|
PREREQ_PM => {
|
||
|
'LWP::UserAgent' => 0,
|
||
|
'XML::Feed' => 0,
|
||
|
'YAML::Any' => 0,
|
||
|
'Getopt::Long' => 0,
|
||
|
},
|
||
|
);
|