mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-05-06 06:21:16 +08:00
converted to ExtUtils::MakeMaker
This commit is contained in:
parent
1bfbad17b5
commit
bbf745dbdb
18
Build.PL
18
Build.PL
@ -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();
|
|
5
MANIFEST
5
MANIFEST
@ -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
|
|
||||||
|
17
META.yml
17
META.yml
@ -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
|
|
32
Makefile.PL
32
Makefile.PL
@ -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-*' },
|
||||||
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user