aboutsummaryrefslogtreecommitdiff
path: root/lib/Net/MulkyID/Builder.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Net/MulkyID/Builder.pm')
-rw-r--r--lib/Net/MulkyID/Builder.pm24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/Net/MulkyID/Builder.pm b/lib/Net/MulkyID/Builder.pm
new file mode 100644
index 0000000..a1c000d
--- /dev/null
+++ b/lib/Net/MulkyID/Builder.pm
@@ -0,0 +1,24 @@
+#! /usr/bin/env perl
+
+package Net::MulkyID::Builder;
+
+use Module::Build;
+
+our @ISA = 'Module::Build';
+
+sub new {
+ my ($class, @args) = @_;
+ my $self = $class->SUPER::new(@args);
+ return bless $self, $class;
+ #my $self = $self->SUPER::new();
+ #return $self;
+ #return bless {}, shift;
+}
+
+sub ACTION_build {
+ my ($self, @args) = @_;
+ eval "use Net::MulkyID::Setup; setup();";
+ #return SUPER::ACTION_build($self, @args);
+}
+
+1;