blob: 174dc043c2456a77df4701686feb1de94ccd013e (
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
|
# $Id$
use 5.008;
use strict;
use ExtUtils::MakeMaker;
# where to find the rpm utility
sub MY::postamble {
<<MAKE;
ChangeLog: \$(TO_INST_PM)
svn2cl -o ChangeLog || :
rm -f *.bak || :
change_dist: ChangeLog tardist
MAKE
}
WriteMakefile(
NAME => 'MDV::Distribconf',
VERSION_FROM => 'lib/MDV/Distribconf.pm',
dist => { DIST_DEFAULT => 'change_dist' },
EXE_FILES => [ qw(bin/checkdistrib) ],
PREREQ_PM => {
'Config::IniFiles' => undef,
'MDV::Packdrakeng' => undef,
'Digest::MD5' => undef,
},
);
|