From 6e4cc6b9343856ab72f15d782dc91f2b33e054b4 Mon Sep 17 00:00:00 2001 From: Hauke D Date: Sun, 12 Aug 2018 01:19:42 +0200 Subject: [PATCH] Updated Readme and added it to release --- README.md | 20 ++++++++++---------- build/build.pl | 2 ++ 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5550b03..d367020 100644 --- a/README.md +++ b/README.md @@ -2,16 +2,16 @@ WebPerl ======= -This is the main WebPerl repository. -Please see the documentation on the main site ****: - -\[ [Home](https://webperl.zero-g.net/index.html) - -[Using WebPerl](https://webperl.zero-g.net/using.html) - -[Building WebPerl](https://webperl.zero-g.net/building.html) - -[Wiki](https://github.com/haukex/webperl/wiki) - -[GitHub](https://github.com/haukex/webperl) - -[Notes](https://webperl.zero-g.net/notes.html) - -[Legal](https://webperl.zero-g.net/legal.html) \] +Welcome to WebPerl! +Please see the documentation on the main site: + +****: +[Using](https://webperl.zero-g.net/using.html), +[Building](https://webperl.zero-g.net/building.html), +[Notes](https://webperl.zero-g.net/notes.html) + +As well as the +[GitHub Wiki](https://github.com/haukex/webperl/wiki). Author, Copyright, and License diff --git a/build/build.pl b/build/build.pl index 172b243..931669c 100755 --- a/build/build.pl +++ b/build/build.pl @@ -382,6 +382,8 @@ if (my $dist = $opts{dist}) { my $zipfn = $basedir->file("$dist.zip"); my $zip = Archive::Zip->new(); $zip->addTree($basedir->subdir('web').'', dir($dist).''); + $zip->addFile($basedir->file($_).'', dir($dist)->file($_).'') for + qw/ README.md LICENSE_artistic.txt LICENSE_gpl.txt /; $zip->writeToFileNamed("$zipfn") == AZ_OK or die "$zipfn write error"; say STDERR "# Wrote to $zipfn:"; my $unzip = Archive::Zip->new("$zipfn");