summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2009-05-23 16:30:04 +0200
committerdakkar <dakkar@thenautilus.net>2009-05-23 16:30:04 +0200
commit4bdb4d7478fc7bf28f957e2083fc37da1a44a6e1 (patch)
tree99b9deb82e3705acbd29d35f1b15cc58df3dc2b1 /Build.PL
downloadGtkPerlFileManager-4bdb4d7478fc7bf28f957e2083fc37da1a44a6e1.tar.gz
GtkPerlFileManager-4bdb4d7478fc7bf28f957e2083fc37da1a44a6e1.tar.bz2
GtkPerlFileManager-4bdb4d7478fc7bf28f957e2083fc37da1a44a6e1.zip
scheletro
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL25
1 files changed, 25 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..03675a6
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,25 @@
+
+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' => '1.1.0',
+ 'Gtk2::GladeXML::Simple' => 0,
+ 'Readonly' => 0,
+ },
+ build_requires => {
+ 'Test::More' => 0,
+ },
+ script_files => [ 'scripts/ldfm' ],
+ add_to_cleanup => [ 'LDFM-*' ],
+ create_packlist => 1,
+);
+
+$builder->create_build_script();