The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use ExtUtils::MakeMaker;

WriteMakefile(
  NAME          => 'App::TWatch::Lite',
  AUTHOR        => ["Alex 'AdUser' Z <aduser\@cpan.org>"],
  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,
  },
);