From e3bfca4ce70ab278b52162557950cab3ac40f615 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Sun, 23 Jan 2011 20:12:36 -0800 Subject: [PATCH] added some more cpan distribution files --- MANIFEST | 2 ++ META.yml | 17 +++++++++++++++++ Makefile.PL | 16 ++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 META.yml create mode 100644 Makefile.PL diff --git a/MANIFEST b/MANIFEST index 3f819ec..e6fa2ba 100644 --- a/MANIFEST +++ b/MANIFEST @@ -5,3 +5,5 @@ README bin/feedGnuplot t/00-load.t t/manifest.t +Makefile.PL +META.yml diff --git a/META.yml b/META.yml new file mode 100644 index 0000000..7a30d27 --- /dev/null +++ b/META.yml @@ -0,0 +1,17 @@ +--- +name: feedGnuplot +version: 1.00 +author: + - 'Dima Kogan ' +abstract: A pipe-oriented frontend to Gnuplot +license: perl +resources: + license: http://dev.perl.org/licenses/ +build_requires: + Test::Script::Run: 0 +configure_requires: + Module::Build: 0.340201 +generated_by: Module::Build version 0.340201 +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: 1.4 diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..cd28fe6 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,16 @@ +# Note: this file was auto-generated by Module::Build::Compat version 0.340201 +use ExtUtils::MakeMaker; +WriteMakefile +( + 'NAME' => 'feedGnuplot', + 'VERSION_FROM' => 'bin/feedGnuplot', + 'PREREQ_PM' => { + 'Test::Script::Run' => 0 + }, + 'INSTALLDIRS' => 'site', + 'EXE_FILES' => [ + 'bin/feedGnuplot' + ], + 'PL_FILES' => {} + ) +;