aboutsummaryrefslogtreecommitdiff
path: root/perl/Curl_easy/Makefile.PL
diff options
context:
space:
mode:
Diffstat (limited to 'perl/Curl_easy/Makefile.PL')
-rw-r--r--perl/Curl_easy/Makefile.PL14
1 files changed, 14 insertions, 0 deletions
diff --git a/perl/Curl_easy/Makefile.PL b/perl/Curl_easy/Makefile.PL
new file mode 100644
index 000000000..58a8528ad
--- /dev/null
+++ b/perl/Curl_easy/Makefile.PL
@@ -0,0 +1,14 @@
+# Makefile.PL for Perl extension Curl::easy.
+# Check out the file README for more info.
+
+use ExtUtils::MakeMaker;
+# See lib/ExtUtils/MakeMaker.pm for details of how to influence
+# the contents of the Makefile that is written.
+WriteMakefile(
+ 'NAME' => 'Curl::easy',
+ 'VERSION_FROM' => 'easy.pm', # finds $VERSION
+ 'LIBS' => ['-lcurl '], # e.g., '-lm'
+ 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
+ 'INC' => '', # e.g., '-I/usr/include/other'
+ 'clean' => {FILES => "head.out body.out"}
+);