r72@llin (orig r72): dpavlin | 2006-01-03 16:43:12 +0100
[perl-fuse.git] / Makefile.PL
index 6e66f46..8148d61 100644 (file)
@@ -1,6 +1,10 @@
 use ExtUtils::MakeMaker;
 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
 # the contents of the Makefile that is written.
+
+my $inc = `pkg-config --cflags` || '-I ../include -D_FILE_OFFSET_BITS=64';
+my $obj = `pkg-config --libs fuse` || '-lfuse';
 WriteMakefile(
     'NAME'             => 'Fuse',
     'VERSION_FROM'     => 'Fuse.pm', # finds $VERSION
@@ -11,7 +15,16 @@ WriteMakefile(
     'LIBS'             => [''], # e.g., '-lm'
     'DEFINE'           => '-g -ggdb', # e.g., '-DHAVE_SOMETHING'
        # Insert -I. if you add *.h files later:
-    'INC'              => '-I../include', # e.g., '-I/usr/include/other'
+    'INC'              => $inc, # e.g., '-I/usr/include/other'
        # Un-comment this if you add C files to link with later:
-    'OBJECT'           => 'Fuse.o ../lib/.libs/libfuse.a -lpthread', # link all the C files too
+    'OBJECT'           => "$obj Fuse.o -lpthread", # link all the C files too
 );
+
+sub MY::postamble {
+    return <<'MAKE_MORE';
+
+sf:
+       svn2cvs.pl file:///home/dpavlin/.svk/fuse/perl-llin :ext:dpavlin@cvs.sourceforge.net:/cvsroot/fuse perl
+
+MAKE_MORE
+};