commit 49ed77123e9df992499b60b55e2bdb85ea744d15 Author: Jorj Bauer Date: Mon Feb 22 04:41:31 2016 -0500 initial commit of skeleton diff --git a/DDNS.pm b/DDNS.pm new file mode 100644 index 0000000..803deba --- /dev/null +++ b/DDNS.pm @@ -0,0 +1,8 @@ +package Martnet::DDNS; + +use strict; +use warnings; + +our $VERSION = '0.1'; + +1; diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..17bec72 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,3 @@ +Makefile.PL +MANIFEST +DDNS.pm diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..d5a8c3a --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,8 @@ +use ExtUtils::MakeMaker; + +WriteMakefile( + 'NAME' => 'Martnet::DDNS', + 'VERSION_FROM' => 'DDNS.pm', + 'PREREQ_PM' => { Net::DNS => 0.8 }, + 'AUTHOR' => 'Jorj Bauer ', + );