-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make separate GSL.pm to battle PAUSE nonsense
- Loading branch information
Showing
4 changed files
with
43 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package PDL::GSL; | ||
|
||
use strict; | ||
use warnings; | ||
|
||
our $VERSION = '2.098'; | ||
|
||
=head1 NAME | ||
PDL::GSL - PDL interface to the GNU Scientific Library | ||
=head1 DESCRIPTION | ||
This is an interface to the GNU Scientific Library. It contains the | ||
following packages: | ||
=over | ||
=item L<PDL::GSL::CDF> | ||
=item L<PDL::GSL::DIFF> | ||
=item L<PDL::GSL::INTEG> | ||
=item L<PDL::GSL::INTERP> | ||
=item L<PDL::GSL::LINALG> | ||
=item L<PDL::GSL::MROOT> | ||
=item L<PDL::GSL::RNG> | ||
=item L<PDL::GSL::SF> | ||
=item L<PDL::Stats::Distr> | ||
=back | ||
=cut | ||
|
||
1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ my $package_name = "PDL::GSL"; | |
$repo = "PDLPorters/$repo"; | ||
WriteMakefile( | ||
NAME => $package_name, | ||
VERSION_FROM => 'CDF/gsl_cdf.pd', | ||
VERSION_FROM => 'GSL.pm', | ||
AUTHOR => 'PerlDL Developers <[email protected]>', | ||
CONFIGURE_REQUIRES => { | ||
'ExtUtils::MakeMaker' => 0, | ||
|