The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

my $INC  = `gnome-config --cflags gnome glib`;
my $LIBS = `gnome-config --libs gnome glib`;

WriteMakefile(
    'NAME'		=> 'Gnome::Sound',
    'VERSION_FROM'	=> 'Sound.pm',
    'PREREQ_PM'		=> {},
    ($] >= 5.005 ?
      (ABSTRACT_FROM => 'Sound.pm',
       AUTHOR     => 'Mark A. Stratman <mark@sporkstorms.org>') : ()),
    'LIBS'		=> [ $LIBS ],
    'DEFINE'		=> '',
    'INC'		=> $INC,
	# Un-comment this if you add C files to link with later:
    # 'OBJECT'		=> '$(O_FILES)', # link all the C files too
);