X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=perl-module%2FMakefile.PL;h=045b4e767710e0ba7b2d43b21c03c0a07316cb6b;hb=163b1639eab9b48eab64752205d75f951547b5c7;hp=77505f2f27ecaa5e4b5f14a1afdecb6938611992;hpb=a992bf1121d3e1eef76fd6184b95fe079bb91558;p=pspp-builds.git diff --git a/perl-module/Makefile.PL b/perl-module/Makefile.PL index 77505f2f..045b4e76 100644 --- a/perl-module/Makefile.PL +++ b/perl-module/Makefile.PL @@ -6,23 +6,23 @@ use ExtUtils::MakeMaker; do 'pspp-module-config' || do { my $build = prompt ("Enter the location of the build directory of the configured pspp source:", "" ); - do 'lib/pspp-vers.pl' || die "No version info"; my $src = $top_srcdir; %Locations = (SourceDir => "$src", BuildDir => "$build"); }; WriteMakefile( + FULLPERL => "PSPP_TEST_CMD=\"$Locations{BuildDir}/src/ui/terminal/pspp -B $Locations{SourceDir}/config\" \$(PERL)", NAME => 'PSPP', DISTNAME => 'PSPP-Perl', VERSION_FROM => "$Locations{BuildDir}/src/libpspp/version.c", PREREQ_PM => {POSIX=>0}, + PM => {"lib/PSPP.pm", "\$(INST_LIBDIR)/PSPP.pm"}, ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/PSPP.pm', # retrieve abstract from module AUTHOR => 'John Darrington ') : ()), INC => "-I $Locations{SourceDir} -I $Locations{SourceDir}/src -I $Locations{SourceDir}/gl -I $Locations{BuildDir}/gl -I $Locations{BuildDir}", - - MYEXTLIB => "$Locations{BuildDir}/src/.libs/libpspp-core\$(LIB_EXT)", + MYEXTLIB => "$Locations{BuildDir}/src/.libs/libpspp-core.\$(DLEXT)", MAN3PODS => {"lib/PSPP.pm", "\$(INST_MAN3DIR)/PSPP.3pm", "Examples.pod", "\$(INST_MAN3DIR)/PSPP::Examples.3pm"} );