added some more cpan distribution files

This commit is contained in:
Dima Kogan 2011-01-23 20:12:36 -08:00
parent 4150a48974
commit e3bfca4ce7
3 changed files with 35 additions and 0 deletions

View File

@ -5,3 +5,5 @@ README
bin/feedGnuplot bin/feedGnuplot
t/00-load.t t/00-load.t
t/manifest.t t/manifest.t
Makefile.PL
META.yml

17
META.yml Normal file
View File

@ -0,0 +1,17 @@
---
name: feedGnuplot
version: 1.00
author:
- 'Dima Kogan <dkogan@cds.caltech.edu>'
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

16
Makefile.PL Normal file
View File

@ -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' => {}
)
;