ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/gde/Makefile.PL
Revision: 1.18
Committed: Sun Jan 11 21:12:56 2009 UTC (15 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: pre_cursor_branch, HEAD
Branch point for: cursor
Changes since 1.17: +2 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 elmex 1.1 require 5.008;
2    
3     use ExtUtils::MakeMaker;
4     use ExtUtils::Depends;
5    
6     my $pkg = new ExtUtils::Depends ();
7    
8     WriteMakefile(
9     dist => {
10     COMPRESS => 'gzip -9v',
11     SUFFIX => '.gz',
12     },
13     PREREQ_PM => {
14 root 1.18 Deliantra => 1.23,
15     Glib => 0,
16 elmex 1.1 Gtk2 => 1.08,
17     },
18     DIR => [],
19     NAME => 'GCE',
20 elmex 1.17 VERSION_FROM => 'bin/gde',
21     EXE_FILES => [qw(bin/gde)],
22 elmex 1.1 $pkg->get_makefile_vars,
23     PM => {
24     'GCE/AttrEdit.pm' => '$(INST_LIBDIR)/GCE/AttrEdit.pm',
25 elmex 1.10 'GCE/InventoryEditor.pm' => '$(INST_LIBDIR)/GCE/InventoryEditor.pm',
26 elmex 1.12 # 'GCE/StackRef.pm' => '$(INST_LIBDIR)/GCE/StackRef.pm',
27 elmex 1.13 'GCE/ArchRef.pm' => '$(INST_LIBDIR)/GCE/ArchRef.pm',
28 elmex 1.11 'GCE/DragHelper.pm' => '$(INST_LIBDIR)/GCE/DragHelper.pm',
29 elmex 1.1 'GCE/MainWindow.pm' => '$(INST_LIBDIR)/GCE/MainWindow.pm',
30 elmex 1.15 'GCE/HashDialog.pm' => '$(INST_LIBDIR)/GCE/HashDialog.pm',
31 elmex 1.5 'GCE/StackView.pm' => '$(INST_LIBDIR)/GCE/StackView.pm',
32 elmex 1.1 'GCE/MapArch.pm' => '$(INST_LIBDIR)/GCE/MapArch.pm',
33 elmex 1.4 'GCE/MapEditor.pm' => '$(INST_LIBDIR)/GCE/MapEditor.pm',
34 elmex 1.1 'GCE/MapWindow.pm' => '$(INST_LIBDIR)/GCE/MapWindow.pm',
35 elmex 1.14 'GCE/AttachEditor.pm' => '$(INST_LIBDIR)/GCE/AttachEditor.pm',
36 elmex 1.1 'GCE/PickWindow.pm' => '$(INST_LIBDIR)/GCE/PickWindow.pm',
37 elmex 1.6 'GCE/EditAction.pm' => '$(INST_LIBDIR)/GCE/EditAction.pm',
38 elmex 1.7 'GCE/Util.pm' => '$(INST_LIBDIR)/GCE/Util.pm',
39 elmex 1.6 # 'images/pick-tool.png' => '$(INST_LIBDIR)/GCE/images/pick-tool.png',
40    
41 elmex 1.1 },
42     );
43    
44    
45