initial commit of skeleton

This commit is contained in:
2016-02-22 04:41:31 -05:00
commit 49ed77123e
3 changed files with 19 additions and 0 deletions

8
DDNS.pm Normal file
View File

@ -0,0 +1,8 @@
package Martnet::DDNS;
use strict;
use warnings;
our $VERSION = '0.1';
1;

3
MANIFEST Normal file
View File

@ -0,0 +1,3 @@
Makefile.PL
MANIFEST
DDNS.pm

8
Makefile.PL Normal file
View File

@ -0,0 +1,8 @@
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Martnet::DDNS',
'VERSION_FROM' => 'DDNS.pm',
'PREREQ_PM' => { Net::DNS => 0.8 },
'AUTHOR' => 'Jorj Bauer <jorj@jorj.org>',
);