source: LATMOS-Accounts/Makefile.PL @ 725

Last change on this file since 725 was 725, checked in by nanardon, 14 years ago
  • 0.0.11
File size: 2.4 KB
Line 
1use 5.010000;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    NAME              => 'LATMOS::Accounts',
7    VERSION           => '0.0.11', # finds $VERSION
8    PREREQ_PM         => {
9        'Net::LDAP' => undef,
10        'Unicode::Map8' => undef,
11        'DBD::Pg' => undef,
12        'Crypt::RSA' => undef,
13        'MIME::Base64' => undef,
14        'Term::ReadKey' => undef,
15        'Config::IniFiles' => undef,
16        'Mail::Sendmail' => undef,
17        'Net::DNS' => undef,
18        'Template' => undef,
19        'Sys::Syslog' => undef,
20        'Pod::Usage' => undef,
21        'Unicode::String' => undef,
22        'Crypt::Cracklib' => undef,
23    }, # e.g., Module::Name => 1.1
24    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
25      (ABSTRACT_FROM  => 'lib/LATMOS/Accounts.pm', # retrieve abstract from module
26       AUTHOR         => 'Thauvin Olivier <olivier.thauvin@latmos.ipsl.fr>') : ()),
27    EXE_FILES => [ qw(
28        bin/la-acls
29        bin/la-qacls
30        bin/la-attributes
31        bin/la-config
32        bin/la-create
33        bin/la-crypt-passwd
34        bin/la-delete
35        bin/la-edit
36        bin/la-group
37        bin/la-guser
38        bin/la-passwd
39        bin/la-query
40        bin/la-rename
41        bin/la-search
42        bin/la-sync
43        bin/la-sync-manager
44        bin/la-warn-expire
45        ) ],
46);
47
48package MY;
49
50sub postamble {
51    <<EOF;
52.PHONY .= svnmanifest
53
54svnmanifest:
55\tsvn ls -R| grep -v "/\$\$"  > MANIFEST
56
57ChangeLog:
58\tsvn log > ChangeLog
59
60latmos-accounts.spec: latmos-accounts.spec.in Makefile
61\tsed -e 's/\@VERSION@/\$(VERSION)/' < \$< > \$@
62
63rpm: \$(DISTVNAME).tar.gz latmos-accounts.spec
64\tmkdir ./noarch || :
65\trpmbuild -ba --clean\\
66\t --define "_sourcedir `pwd`" \\
67\t --define "_specdir `pwd`" \\
68\t --define "_srcrpmdir `pwd`" \\
69\t --define "_rpmdir `pwd`" \\
70\t latmos-accounts.spec
71
72EOF
73}
74
75sub install {
76    my ($self) = @_;
77    my $section = $self->SUPER::install();
78
79    $section =~ s/(^install ::.*)/$1 install_config install_templates/m;
80
81    $section .= q[
82install_config ::
83        install -d $(DESTDIR)/etc
84        install sample/latmos-account.ini $(DESTDIR)/etc/latmos-account.ini
85
86install_templates ::
87        install -d $(DESTDIR)/usr/share/latmos-accounts/templates
88        $(ABSPERLRUN) -MExtUtils::Install -e 'install({ templates => @ARGV })' \\
89                $(DESTDIR)/usr/share/latmos-accounts/templates
90];
91 
92    return $section;
93}
Note: See TracBrowser for help on using the repository browser.