X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=Makefile.PL;h=7e21fce931dfaf062ea472ea2cecaeb85dc91e3e;hp=46ef99f9f5210a27b2b63568a34038e5b047ead8;hb=0acad050fe38033baedfed83f5976aeabebf3287;hpb=d62d98b9a7f502da65673f0b83a6d06312c060d9 diff --git a/Makefile.PL b/Makefile.PL index 46ef99f9..7e21fce9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright (C) 2013-2019 all contributors +# Copyright (C) 2013-2020 all contributors # License: AGPL-3.0+ use strict; use ExtUtils::MakeMaker; @@ -11,8 +11,9 @@ my $t = {}; my @RELEASES = qw(v1.2.0 v1.1.0-pre1 v1.0.0); # do not sort $v->{news_deps} = [ map { "Documentation/RelNotes/$_.eml" } @RELEASES ]; $v->{txt} = [ qw(INSTALL README COPYING TODO HACKING) ]; -my @dtxt = grep(m!\ADocumentation/.*\.txt\z!, @manifest); +my @dtxt = grep(m!\ADocumentation/[^/]+\.txt\z!, @manifest); push @dtxt, 'Documentation/standards.txt'; +push @dtxt, 'Documentation/flow.txt'; push @dtxt, @{$v->{txt}}; for my $txt (@dtxt) { my $html = $txt; @@ -70,10 +71,10 @@ $v->{rsync_docs} = [ @{$v->{gz_docs}}, @{$v->{docs}}, # external manpages which we host ourselves, since some packages # (currently just Xapian) doesn't host manpages themselves. my @xman = qw(copydatabase.1 xapian-compact.1); -$v->{xdocs} = [ map { "Documentation/.x/.$_.txt" } @xman ]; -$v->{xdocs_html} = [ map { "Documentation/.x/.$_.html" } @xman ]; +$v->{xdocs} = [ map { "Documentation/.$_.txt" } @xman ]; +$v->{xdocs_html} = [ map { "Documentation/.$_.html" } @xman ]; for (@{$v->{xdocs}}) { - $t->{"$_ : | Documentation/.x"} = [ + $t->{"$_:"} = [ '$(PERL) -w Documentation/extman.perl $@ >$@+', 'mv $@+ $@' ];