From a4f149873af1e9cff9ab0829adfcd3eca1a3780d Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Thu, 6 Jan 2011 01:07:55 +0000 Subject: search in core, nonfree, tainted instead of main, contrib --- Makefile.PL | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Makefile.PL (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..38343c8 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,31 @@ +# $Id: Makefile.PL 1724 2006-10-17 13:55:27Z warly $ +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'youri-core', + VERSION => 0.9, + AUTHOR => 'Youri project ', + PREREQ_PM => { + 'AppConfig' => 0, + 'YAML' => 0, + 'Pod::Simple::HTMLBatch' => 0, + 'Test::Exception' => 0, + 'Exception' => 0, + 'RPM4' => 0, + 'URPM' => 0 + } +); + +package MY; + +sub top_targets { + my ($self) = @_; + my $top_targets = $self->SUPER::top_targets(@_); + $top_targets =~ s/all :: pure_all manifypods/all :: pure_all manifypods htmlifypods/; + $top_targets .= <<'EOF'; +htmlifypods : $(TO_INST_PM) + if [ ! -d blib/html ]; then mkdir blib/html; fi + perl -MPod::Simple::HTMLBatch -e Pod::Simple::HTMLBatch::go lib blib/html +EOF + return $top_targets; +} -- cgit v1.2.1 From b83399286f7364d008c7a8af481676c83b1efdc0 Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Thu, 6 Jan 2011 02:29:42 +0000 Subject: mdv-youri-core version 0.9.1 --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL index 38343c8..3a01ce9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,7 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'youri-core', - VERSION => 0.9, + VERSION => 0.9.1, AUTHOR => 'Youri project ', PREREQ_PM => { 'AppConfig' => 0, -- cgit v1.2.1