Update MANIFEST
[linux-seccomp.git] / Makefile.PL
index c2dca8ed2bf6b9fc05b5d4a8447e277087d48b88..54fca1e047e5cc76bf09a3185a9868237c2ebfb8 100644 (file)
@@ -1,10 +1,6 @@
 use 5.014000;
-use Devel::CheckLib;
 use ExtUtils::MakeMaker;
 
-check_lib_or_exit
-  lib => 'seccomp';
-
 WriteMakefile(
        NAME              => 'Linux::Seccomp',
        VERSION_FROM      => 'lib/Linux/Seccomp.pm',
@@ -13,12 +9,8 @@ WriteMakefile(
        MIN_PERL_VERSION  => '5.14.0',
        LICENSE           => 'perl',
        SIGN              => 1,
-       CONFIGURE_REQUIRES => {
-               qw/Devel::CheckLib     0
-                  ExtUtils::MakeMaker 0/,
-       },
        PREREQ_PM          => {},
-       LIBS               => ['-lseccomp'],
+       INC                => '-Ilibseccomp/include',
        MYEXTLIB           => 'libseccomp/src/.libs/libseccomp$(LIB_EXT)',
        clean              => { FILES => 'libseccomp/src/.libs/libseccomp$(LIB_EXT)' },
        META_ADD           => {
@@ -31,8 +23,8 @@ WriteMakefile(
 
 sub MY::postamble {
 '
-$(MYEXTLIB): libseccomp/configure
-       cd libseccomp && ./configure && `which gmake || echo $(MAKE)` all
+$(MYEXTLIB): libseccomp/configure.ac libseccomp/Makefile.am libseccomp/autogen.sh
+       cd libseccomp && ./autogen.sh && ./configure && `which gmake || echo $(MAKE)` all
 '
 }
 
This page took 0.010507 seconds and 4 git commands to generate.