blob: f307990e392b281d848ba17a2d6ca518cc936a55 (
plain)
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
|
# $Id$
use 5.008;
use strict;
use ExtUtils::MakeMaker;
# where to find the rpm utility
my $rpm_path = $ENV{RPM_PATH}; # this overrides
unless (defined $rpm_path) {
for (qw(/bin/rpm /usr/bin/rpm)) {
if (-x) {
$rpm_path = $_;
last;
}
}
}
sub MY::postamble {
<<MAKE;
.PHONY: ChangeLog rpmdist srpm rpm
ChangeLog: ../common/username
cvs2cl -W 400 -I ChangeLog --accum -U ../common/username
rm -f *.bak
rpmdist: dist
bzme MDV-Distribconf-*.tar.gz
srpm: rpmdist
rpmbuild -bs --clean --rmsource perl-MDV-Distribconf.spec --define "_sourcedir `pwd`"
rpm: rpmdist
rpmbuild -ba --clean --rmsource perl-MDV-Distribconf.spec --define "_sourcedir `pwd`"
MAKE
}
WriteMakefile(
NAME => 'MDV::Distribconf',
VERSION_FROM => 'lib/MDV/Distribconf.pm',
);
|