aboutsummaryrefslogtreecommitdiffstats
path: root/perl/Makefile.PL.in
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2008-08-19 19:46:10 +0400
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2008-08-19 19:46:10 +0400
commit86fd197a95f72d09e5cccbc059829ff5f6b03b87 (patch)
tree5c6ca0c98bde0b2a6703f30283ba33bb393fc7b8 /perl/Makefile.PL.in
parent4fcd073731ec81987c662e04b480846634e71c59 (diff)
downloadrspamd-86fd197a95f72d09e5cccbc059829ff5f6b03b87.tar.gz
rspamd-86fd197a95f72d09e5cccbc059829ff5f6b03b87.zip
* Add initial implementation of rspamd XS module
Diffstat (limited to 'perl/Makefile.PL.in')
-rw-r--r--perl/Makefile.PL.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/perl/Makefile.PL.in b/perl/Makefile.PL.in
new file mode 100644
index 000000000..9b436f12f
--- /dev/null
+++ b/perl/Makefile.PL.in
@@ -0,0 +1,9 @@
+use ExtUtils::MakeMaker;
+WriteMakefile(
+ NAME => 'rspamd',
+ VERSION_FROM => 'rspamd.pm', # finds $VERSION
+ LIBS => ['%%libs%%'], # e.g., '-lm'
+ DEFINE => '',
+ INC => '%%include%%',
+);
+