Alien-SDL
view release on metacpan or search on metacpan
bin/sdl-config.pl view on Meta::CPAN
#! perl
use strict;
use warnings;
use Alien::SDL;
use Getopt::Long;
my $libs; my $cflags; my $prefix;
my $result = GetOptions ( "libs" => \$libs,
"cflags" => \$cflags,
"prefix" => \$prefix );
print Alien::SDL->config('libs') if $libs;
print Alien::SDL->config('cflags') if $cflags;
print Alien::SDL->config('prefix') if $prefix;
( run in 0.871 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )