File: Makefile.PL

package info (click to toggle)
libgtk2-ex-simple-list-perl 0.50-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 100 kB
  • ctags: 48
  • sloc: perl: 609; makefile: 45
file content (66 lines) | stat: -rw-r--r-- 1,404 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#
# $Header: /cvsroot/gtk2-perl-ex/Gtk2-Ex/Simple/List/Makefile.PL,v 1.1.1.1 2004/10/21 00:00:57 rwmcfa1 Exp $
#

use 5.008;
use strict;
use warnings;

use ExtUtils::MakeMaker;

# minimum required version of dependencies we need to build
our %build_reqs = (
	'perl-Gtk2'               => '1.060',
);

# Writing a fake Makefile ensures that CPAN will pick up the correct
# dependencies and install them.
unless (eval "use Glib::MakeHelper; use Gtk2; 1")
{
	warn "$@\n";
	WriteMakefile(
		PREREQ_FATAL => 1,
		PREREQ_PM    =>
		{
			Glib => '1.00',
			Gtk2 => '1.00',
		},
	);
	exit 1; # not reached
}

WriteMakefile(
	NAME            => 'Gtk2::Ex::Simple::List',
	VERSION_FROM    => 'lib/Gtk2/Ex/Simple/List.pm',
	ABSTRACT_FROM   => 'lib/Gtk2/Ex/Simple/List.pm',
);

package MY;

# rule to build the documentation
sub postamble 
{
	my $text = Glib::MakeHelper->postamble_clean ()
		 . Glib::MakeHelper->postamble_rpms (
			'PERL_GTK' => $build_reqs{'perl-Gtk2'},
		   );
	
	# this installation stuff doesn't make sense on windows, where
	# we don't really have a /usr.  also, nmake barfs on $+.
	unless ($^O eq 'MSWin32') {
		$text .= "
# the tmp-xxx stuff is just so that only the pl files get installed
install-\%: %
	\@\$(MKPATH) tmp-\$+/
	\@\$(CP) \$+/*.* tmp-\$+/
	\@\$(MOD_INSTALL) ./tmp-\$+/ \\
		\$(PREFIX)/share/doc/perl-\$(DISTNAME)/\$+
	\@\$(RM_RF) tmp-\$+/
";
	}

	return $text;
}

1;
__END__