From 89890b6457a8c06e071e2495869003eacda22e95 Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Wed, 27 May 2015 17:10:48 +1000 Subject: [PATCH] + Makefile.PL --- Changes | 5 +++++ MANIFEST | 2 ++ Makefile.PL | 16 ++++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 Changes create mode 100644 MANIFEST create mode 100644 Makefile.PL diff --git a/Changes b/Changes new file mode 100644 index 0000000..8f027cc --- /dev/null +++ b/Changes @@ -0,0 +1,5 @@ +Revision history for perl script twatch-lite + +0.01 2015-05-27 + + - First public release diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..e2dab5f --- /dev/null +++ b/MANIFEST @@ -0,0 +1,2 @@ +twatch-lite +Changes diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..3c5f2a7 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,16 @@ +use ExtUtils::MakeMaker; + +WriteMakefile( + AUTHOR => ["Alex 'AdUser' Z "], + 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, + }, +);