summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordakkar <dakkar@fcb26f47-9200-0410-b104-b98ab5b095f3>2005-11-24 09:53:34 +0000
committerdakkar <dakkar@fcb26f47-9200-0410-b104-b98ab5b095f3>2005-11-24 09:53:34 +0000
commitdd4f18c65a56f034c73aad227bb52dab5f1835a2 (patch)
tree10fcca5721daa243abbb27ae400eff944ddc0d17
parent r792@narval2: dakkar | 2005-11-19 15:37:41 +0100 (diff)
downloadGtkPerlFileManager-dd4f18c65a56f034c73aad227bb52dab5f1835a2.tar.gz
GtkPerlFileManager-dd4f18c65a56f034c73aad227bb52dab5f1835a2.tar.bz2
GtkPerlFileManager-dd4f18c65a56f034c73aad227bb52dab5f1835a2.zip
r793@narval2: dakkar | 2005-11-19 15:49:43 +0100
scheletro vuoto git-svn-id: svn://luxion/repos/GtkPerlFileManager/trunk@38 fcb26f47-9200-0410-b104-b98ab5b095f3
-rw-r--r--.cvsignore0
-rw-r--r--Build.PL24
-rw-r--r--MANIFEST9
-rw-r--r--README20
-rw-r--r--lib/LDFM/MainController.pm10
-rw-r--r--t/00-load.t7
-rw-r--r--t/00-pod-coverage.t5
-rw-r--r--t/00-pod.t5
-rw-r--r--t/00-prereqs.t4
9 files changed, 84 insertions, 0 deletions
diff --git a/.cvsignore b/.cvsignore
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/.cvsignore
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..9129a8c
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,24 @@
+
+use strict;
+use warnings;
+use Module::Build;
+
+my $builder = Module::Build->new(
+ dist_name => 'LDFM',
+ license => 'perl',
+ dist_name => 'LD-FM',
+ dist_version_from => 'lib/LDFM/MainController.pm',
+ requires => {
+ 'perl' => '5.8.3',
+ 'Gtk2' => '2.4.0',
+ 'Gtk2::GladeXML::Simple' => 0,
+ 'Readonly' => 0,
+ },
+ build_requires => {
+ 'Test::More' => 0,
+ },
+ add_to_cleanup => [ 'LDFM-*' ],
+ create_packlist => 1,
+);
+
+$builder->create_build_script();
diff --git a/MANIFEST b/MANIFEST
new file mode 100644
index 0000000..6688460
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,9 @@
+Build.PL
+MANIFEST
+META.yml # Will be created by "make dist"
+README
+lib/LDFM/MainController.pm
+t/00-load.t
+t/00-pod-coverage.t
+t/00-pod.t
+t/00-prereqs.t
diff --git a/README b/README
new file mode 100644
index 0000000..c3b9445
--- /dev/null
+++ b/README
@@ -0,0 +1,20 @@
+LDFM
+
+LinuxDay FileManager
+
+INSTALLATION
+
+To install this module, run the following commands:
+
+ perl Build.PL
+ ./Build
+ ./Build test
+ ./Build install
+
+COPYRIGHT AND LICENCE
+
+Copyright (C) 2005 Gianni Ceccarelli
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
diff --git a/lib/LDFM/MainController.pm b/lib/LDFM/MainController.pm
new file mode 100644
index 0000000..a9534e0
--- /dev/null
+++ b/lib/LDFM/MainController.pm
@@ -0,0 +1,10 @@
+package LDFM::MainController;
+use utf8;
+use warnings;
+use strict;
+use base 'Gtk2::GladeXML::Simple';
+use Readonly;
+
+our $VERSION = '0.01';
+
+1;
diff --git a/t/00-load.t b/t/00-load.t
new file mode 100644
index 0000000..cd42d3e
--- /dev/null
+++ b/t/00-load.t
@@ -0,0 +1,7 @@
+use Test::More tests => 1;
+
+BEGIN {
+ use_ok('LDFM::MainController');
+}
+
+diag( "Testing LDFM $LDFM::MainController::VERSION" );
diff --git a/t/00-pod-coverage.t b/t/00-pod-coverage.t
new file mode 100644
index 0000000..2531190
--- /dev/null
+++ b/t/00-pod-coverage.t
@@ -0,0 +1,5 @@
+use Test::More;
+eval "use Test::Pod::Coverage 1.04";
+plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"
+ if $@;
+all_pod_coverage_ok();
diff --git a/t/00-pod.t b/t/00-pod.t
new file mode 100644
index 0000000..aa819af
--- /dev/null
+++ b/t/00-pod.t
@@ -0,0 +1,5 @@
+use Test::More;
+eval "use Test::Pod 1.14";
+plan skip_all => "Test::Pod 1.14 required for testing POD"
+ if $@;
+all_pod_files_ok();
diff --git a/t/00-prereqs.t b/t/00-prereqs.t
new file mode 100644
index 0000000..5d39ddf
--- /dev/null
+++ b/t/00-prereqs.t
@@ -0,0 +1,4 @@
+use Test::More;
+eval "use Test::Prereq::Build";
+plan skip_all => "Test::Prereq::Build required to test dependencies" if $@;
+prereq_ok();