From dd4823c7e43c6806508ab0288fbfabc2805a0024 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Sun, 6 Apr 2003 18:44:39 +0000 Subject: [PATCH] initial release git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1427 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- bindings/Makefile.PL | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bindings/Makefile.PL diff --git a/bindings/Makefile.PL b/bindings/Makefile.PL new file mode 100644 index 000000000..38f870fb4 --- /dev/null +++ b/bindings/Makefile.PL @@ -0,0 +1,12 @@ +use ExtUtils::MakeMaker; +WriteMakefile( + 'NAME' => 'Hamlib', + ($] >= 5.005 ? ## Add these new keywords supported since 5.005 + (#ABSTRACT_FROM => 'Hamlib.pm', # retrieve abstract from module + AUTHOR => 'Stephane Fillod') : ()), + # should use libtool somehow. Otherwise try -Wl,--rpath + #'LIBS' => ['-L../../src/.libs -lhamlib'], + #'DEFINE' => '', + #'INC' => '', + #'OBJECT' => 'hamlibperl_wrap.o', # link all the C files too +);