my $xml = XML::LibXML->new()->parse_file($xml_path) or die $!;
## Get the version number
- my $version = $xml->findvalue('/book/bookinfo/revhistory/revision/revnumber');
- die "Unable to get version number\n" unless defined $version && $version =~ /^\d+(\.\d+)*$/;
+ my $version = do {
+ my $version = $xml->findvalue('/book/bookinfo/revhistory/revision/revnumber');
+ die "Unable to get version number\n"
+ unless defined $version and $version =~ /^
+ (?<version>
+ \d+ # major
+ (?:\.\d+(?:\.\d+)?)? # (minor(.patch))
+ )
+ (?:-RC\d+)?$/x; # -RCX
+ $+{version};
+ };
## Prepend chapter filenames?
my $prepend_chapter = $type eq 'filter' ? 'filter_' : '';
=head1 NAME
-gen.pl - Generate exim html documentation and website
+gen - Generate exim html documentation and website
=head1 SYNOPSIS
-gen.pl [options]
+gen [options]
Options:
--help display this help and exits
=head1 EXAMPLE
- script/gen.pl \
+ script/gen \
--web \
--spec docbook/*/spec.xml \
--filter docbook/*/filter.xml \