Alien-Gnuplot

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

1.043 2024-04-13
- make any failure more verbose to help debugging

1.042 2023-03-30
- Update Gnuplot 5.4.6 URI for second release of Windows binaries. GH#13.

1.041 2023-03-12
  - Minimum Alien::Build for Build::Copy plugin is Alien::Build v2.19. Thanks
    to Andreas K. Hüttel (akhuettel++) for the bug report. GH#11.

1.040 2023-02-23
  - Switch to using Alien::Build / alienfile to check and install Gnuplot.

README.pod  view on Meta::CPAN


A major client module for Alien::Gnuplot is PDL::Graphics::Gnuplot, which
can be found at L<https://github.com/PDLPorters/PDL-Graphics-Gnuplot>.
PDL is at L<https://pdl.perl.org/>.

=head1 AUTHOR

Craig DeForest <craig@deforest.org>

(with special thanks to Chris Marshall, Juergen Mueck, and
Sisyphus for testing and debugging on the Microsoft platform)

=head1 COPYRIGHT AND LICENSE

Copyright (C) 2013 Craig DeForest

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut

lib/Alien/Gnuplot.pm  view on Meta::CPAN


A major client module for Alien::Gnuplot is PDL::Graphics::Gnuplot, which
can be found at L<https://github.com/PDLPorters/PDL-Graphics-Gnuplot>.
PDL is at L<https://pdl.perl.org/>.

=head1 AUTHOR

Craig DeForest <craig@deforest.org>

(with special thanks to Chris Marshall, Juergen Mueck, and
Sisyphus for testing and debugging on the Microsoft platform)

=head1 COPYRIGHT AND LICENSE

Copyright (C) 2013 Craig DeForest

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut

package Alien::Gnuplot;

use strict;
our $DEBUG = 0; # set to 1 for some debugging output

use parent qw( Alien::Base );

use File::Spec;
use File::Temp qw/tempfile/;
use File::Which;
use Time::HiRes qw/usleep/;
use POSIX ":sys_wait_h";
use Fcntl qw/SEEK_SET/;
use Env qw( @PATH );



( run in 1.036 second using v1.01-cache-2.11-cpan-49f99fa48dc )