App-Info
view release on metacpan or search on metacpan
t/bin/pg_config view on Meta::CPAN
#!/usr/bin/perl -w
use File::Spec::Functions;
my $bin_dir = catdir qw(t scripts);
$bin_dir = catdir(qw(t bin)) unless -d $bin_dir;
if ($ARGV[0] eq '--version') {
print "PostgreSQL 8.0.0\n";
} elsif ($ARGV[0] eq '--bindir') {
print "$bin_dir\n";
} elsif ($ARGV[0] eq '--includedir') {
print "t/testinc\n";
} elsif ($ARGV[0] eq '--libdir' || $ARGV[0] eq '--pkglibdir') {
print "t/testlib\n";
} elsif ($ARGV[0] eq '--configure') {
print "\n";
}
( run in 0.654 second using v1.01-cache-2.11-cpan-2398b32b56e )