Browse Source

+ Makefile.PL

master
Alex 'AdUser' Z 9 years ago
parent
commit
89890b6457
  1. 5
      Changes
  2. 2
      MANIFEST
  3. 16
      Makefile.PL

5
Changes

@ -0,0 +1,5 @@
Revision history for perl script twatch-lite
0.01 2015-05-27
- First public release

2
MANIFEST

@ -0,0 +1,2 @@
twatch-lite
Changes

16
Makefile.PL

@ -0,0 +1,16 @@
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,
},
);
Loading…
Cancel
Save