source: LATMOS-Accounts/Makefile.PL @ 779

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