Convert to standard perl dist structure
This commit is contained in:
parent
ff784ba351
commit
1c4657f642
|
@ -0,0 +1,14 @@
|
||||||
|
use Module::Build;
|
||||||
|
my $version = '0.001';
|
||||||
|
my $build = Module::Build->new
|
||||||
|
(
|
||||||
|
module_name => 'Rss2Html',
|
||||||
|
dist_name => 'Rss2Html',
|
||||||
|
dist_author => 'Peter J. Holzer <hjp@hjp.at>',
|
||||||
|
dist_abstract => 'A simple RSS and Atom feed reader',
|
||||||
|
dist_version => $version,
|
||||||
|
script_files => [
|
||||||
|
],
|
||||||
|
);
|
||||||
|
$build->create_build_script;
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
.htaccess
|
||||||
|
Build.PL
|
||||||
|
do_cron
|
||||||
|
feed.cgi
|
||||||
|
index.cgi
|
||||||
|
lib/Rss2Html/Feed.pm
|
||||||
|
lib/Rss2Html/FeedList.pm
|
||||||
|
lib/Rss2Html/Scrubber.pm
|
||||||
|
log.conf
|
||||||
|
MANIFEST This list of files
|
||||||
|
Notes
|
||||||
|
plot_intervals
|
||||||
|
plot_stats
|
||||||
|
rss2html.css
|
||||||
|
scrubber_test
|
||||||
|
update2
|
||||||
|
update3
|
||||||
|
update_frequency
|
Loading…
Reference in New Issue