gstreamer/swig/Makefile.PL.in
Thomas Vander Stichele b66d124abc taking a first stab at swigging gstreamer for perl
Original commit message from CVS:
taking a first stab at swigging gstreamer for perl
2001-08-13 13:46:21 +00:00

15 lines
359 B
Perl

#!/usr/bin/perl -w
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Gst',
# FIXME : I hardcoded my lib path here
'LIBS' => '@GLIB_LIBS@ @GTK_LIBS@ @XML_LIBS@ '.
'-L../gst/.libs/ -lgst '
,
'INC' => '@GLIB_CFLAGS@ @GTK_CFLAGS@ @XML_CFLAGS@ '.
'-DHAVE_CPU_I386 -D_GNU_SOURCE -DHAVE_CONFIG '.
'-I.. '
,
'OBJECT' => 'Gst_wrap.o gstswig.o'
);