converted to ExtUtils::MakeMaker

This commit is contained in:
Dima Kogan 2011-01-24 00:38:01 -08:00
parent 1bfbad17b5
commit bbf745dbdb
4 changed files with 19 additions and 53 deletions

View File

@ -1,18 +0,0 @@
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'feedGnuplot',
license => 'perl',
dist_author => q{Dima Kogan <dkogan@cds.caltech.edu>},
dist_version_from => 'bin/feedGnuplot',
build_requires => {
'Test::Script::Run' => 0,
},
add_to_cleanup => [ 'feedGnuplot-*' ],
create_makefile_pl => 'traditional',
script_files => ['bin/feedGnuplot'],
);
$builder->create_build_script();

View File

@ -1,9 +1,6 @@
Build.PL Makefile.PL
Changes Changes
MANIFEST MANIFEST
README.pod
bin/feedGnuplot bin/feedGnuplot
t/00-load.t t/00-load.t
t/manifest.t t/manifest.t
Makefile.PL
META.yml

View File

@ -1,17 +0,0 @@
---
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

View File

@ -1,16 +1,20 @@
# Note: this file was auto-generated by Module::Build::Compat version 0.340201 use strict;
use warnings;
use ExtUtils::MakeMaker; use ExtUtils::MakeMaker;
WriteMakefile WriteMakefile
( (
'NAME' => 'feedGnuplot', NAME => 'feedGnuplot',
'VERSION_FROM' => 'bin/feedGnuplot', AUTHOR => q{Dima Kogan <dkogan@cds.caltech.edu>},
'PREREQ_PM' => { VERSION_FROM => 'bin/feedGnuplot',
'Test::Script::Run' => 0 ABSTRACT_FROM => 'bin/feedGnuplot',
}, ($ExtUtils::MakeMaker::VERSION >= 6.3002
'INSTALLDIRS' => 'site', ? ('LICENSE' => 'perl')
'EXE_FILES' => [ : ()),
'bin/feedGnuplot' PL_FILES => {},
], EXE_FILES => [ 'bin/feedGnuplot' ],
'PL_FILES' => {} PREREQ_PM => { 'Test::Script::Run' => 0 },
) dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
; clean => { FILES => 'feedGnuplot-*' },
);