source: LATMOS-Accounts/Makefile.PL @ 836

Last change on this file since 836 was 836, checked in by nanardon, 14 years ago
  • 0.0.25
File size: 2.5 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.25', # 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-list
44        bin/la-sync-manager
45        bin/la-warn-expire
46        bin/la-web-directory
47        ) ],
48);
49
50package MY;
51
52sub postamble {
53    <<EOF;
54.PHONY .= svnmanifest
55
56svnmanifest:
57\tsvn ls -R| grep -v "/\$\$"  > MANIFEST
58
59ChangeLog:
60\tsvn log > ChangeLog
61
62latmos-accounts.spec: latmos-accounts.spec.in Makefile
63\tsed -e 's/\@VERSION@/\$(VERSION)/' < \$< > \$@
64
65rpm: \$(DISTVNAME).tar.gz latmos-accounts.spec
66\tmkdir ./noarch || :
67\trpmbuild -ba --clean\\
68\t --define "_sourcedir `pwd`" \\
69\t --define "_specdir `pwd`" \\
70\t --define "_srcrpmdir `pwd`" \\
71\t --define "_rpmdir `pwd`" \\
72\t latmos-accounts.spec
73
74EOF
75}
76
77sub install {
78    my ($self) = @_;
79    my $section = $self->SUPER::install();
80
81    $section =~ s/(^install ::.*)/$1 install_config install_templates/m;
82
83    $section .= q[
84install_config ::
85        install -d $(DESTDIR)/etc
86        install sample/latmos-account.ini $(DESTDIR)/etc/latmos-account.ini
87
88install_templates ::
89        install -d $(DESTDIR)/usr/share/latmos-accounts/templates
90        $(ABSPERLRUN) -MExtUtils::Install -e 'install({ templates => @ARGV })' \\
91                $(DESTDIR)/usr/share/latmos-accounts/templates
92];
93 
94    return $section;
95}
Note: See TracBrowser for help on using the repository browser.