Simple Build.PL script, allows us to do
authorChris Cormack <chrisc@catalyst.net.nz>
Wed, 2 Oct 2013 21:34:31 +0000 (10:34 +1300)
committerChris Cormack <chrisc@catalyst.net.nz>
Wed, 2 Oct 2013 21:36:44 +0000 (10:36 +1300)
perl Build.PL
./Build build
./Build test

Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
Build.PL [new file with mode: 0644]
MANIFEST [new file with mode: 0644]
MYMETA.json [new file with mode: 0644]
MYMETA.yml [new file with mode: 0644]

diff --git a/Build.PL b/Build.PL
new file mode 100644 (file)
index 0000000..27fde65
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,6 @@
+use Module::Build;
+Module::Build->new(
+    dist_abstract => 'Main module for NCIP support',
+    module_name   => 'NCIP',
+    license       => 'gpl',
+)->create_build_script;
diff --git a/MANIFEST b/MANIFEST
new file mode 100644 (file)
index 0000000..2db6a82
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,24 @@
+bin/start_server.pl
+Build.PL
+COPYING
+lib/NCIP.pm
+lib/NCIP/Configuration.pm
+lib/NCIP/Configuration/Service.pm
+lib/NCIP/Handler.pm
+lib/NCIP/Handler/LookupItem.pm
+lib/NCIP/Item.pm
+lib/NCIP/User.pm
+lib/NCIPResponder.pm
+lib/NCIPServer.pm
+LICENSE
+MANIFEST                       This list of files
+README
+t/config_sample/NCIP.xml
+t/NCIP.t
+t/NCIP_Configuration.t
+t/NCIP_Handler.t
+t/NCIP_Item.t
+t/NCIP_User.t
+t/NCIPServer.t
+t/sample_data/LookupItem.xml
+t/sample_data/LookupItemWithExampleItemIdentifierType.xml
diff --git a/MYMETA.json b/MYMETA.json
new file mode 100644 (file)
index 0000000..13bfbea
--- /dev/null
@@ -0,0 +1,24 @@
+{
+   "abstract" : "Main module for NCIP support",
+   "author" : [
+      "unknown"
+   ],
+   "dynamic_config" : 0,
+   "generated_by" : "Module::Build version 0.4, CPAN::Meta::Converter version 2.120921",
+   "license" : [
+      "open_source"
+   ],
+   "meta-spec" : {
+      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+      "version" : "2"
+   },
+   "name" : "NCIP",
+   "prereqs" : {},
+   "release_status" : "stable",
+   "resources" : {
+      "license" : [
+         "http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt"
+      ]
+   },
+   "version" : "0.01"
+}
diff --git a/MYMETA.yml b/MYMETA.yml
new file mode 100644 (file)
index 0000000..19a5f39
--- /dev/null
@@ -0,0 +1,15 @@
+---
+abstract: 'Main module for NCIP support'
+author:
+  - unknown
+build_requires: {}
+dynamic_config: 0
+generated_by: 'Module::Build version 0.4, CPAN::Meta::Converter version 2.120921'
+license: open_source
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: NCIP
+resources:
+  license: http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt
+version: 0.01