diff options
Diffstat (limited to 'bindings/swig/perl/Makefile.PL')
-rw-r--r-- | bindings/swig/perl/Makefile.PL | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bindings/swig/perl/Makefile.PL b/bindings/swig/perl/Makefile.PL new file mode 100644 index 0000000..ed1e4e9 --- /dev/null +++ b/bindings/swig/perl/Makefile.PL @@ -0,0 +1,17 @@ +#!/usr/bin/perl + +use ExtUtils::MakeMaker; + +# See lib/ExtUtils/MakeMaker.pm for details of how to influence +# the contents of the Makefile that is written. +WriteMakefile( + 'NAME' => 'Sword', + 'VERSION' => '1.5.5', + 'INC' => '-I/scratch/src/tmp/include/sword', + 'DEFINE' => '-DSWIG', + 'LIBS' => '-L/scratch/src/tmp/lib -lsword -lz', + 'PREREQ_PM' => {}, # e.g., Module::Name => 1.1 + ($] >= 5.005 ? ## Add these new keywords supported since 5.005 + (ABSTRACT => 'Sword Project perl bindings', # retrieve abstract from module + AUTHOR => 'Sword Project <sword-devel@crosswire.org>') : ()), +); |