mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-24 14:00:17 +00:00
* To make the ChangeLog generic removed debian specific information from each version header. * Updated the Makefile.PL to utilize the new ChangeLog file for the version number.
37 lines
771 B
Perl
Executable File
37 lines
771 B
Perl
Executable File
#!/usr/bin/perl -w
|
|
use ExtUtils::MakeMaker;
|
|
use strict;
|
|
|
|
# Just to make it ignore editor backup files.
|
|
sub MY::libscan {
|
|
$_ = $_[1];
|
|
|
|
return '' if $_ eq 'alien.pl';
|
|
return '' if m/\/(RCS|CVS|SCCS)\// || m/[~%]$/ || m/\.(orig|rej)$/;
|
|
return $_;
|
|
}
|
|
|
|
# Add a few more targets.
|
|
sub MY::postamble {
|
|
return q{
|
|
|
|
VER=$(shell perl -e '$$_=<>;print m/\((.*?)\)/'<ChangeLog)
|
|
|
|
all:: extra_build
|
|
clean:: extra_build
|
|
|
|
extra_build:
|
|
perl -i -pe "s/\@version\@/$(VER)/g" <alien.lsm.in >alien.lsm
|
|
perl -i -pe "s/\@version\@/$(VER)/g" <alien.spec.in >alien.spec
|
|
|
|
alien:
|
|
perl -pe '$$_="" if /use lib/; $$_="our \$$Version=\"$(VER)\";\n" if /VERSION_AUTOREPLACE/' alien.pl > alien
|
|
}
|
|
}
|
|
|
|
WriteMakefile(
|
|
'NAME' => 'Alien',
|
|
'EXE_FILES' => ['alien'],
|
|
'clean' => {FILES => 'alien'},
|
|
);
|