summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorAntonin Décimo2021-07-11 17:56:13 +0200
committerAntonin Décimo2021-07-11 17:56:13 +0200
commit2237c3c8700b9edc585995a23db5e99c51684863 (patch)
treeafe983fcab2726fb2afd7fcaf0282dc5e11814e4 /PKGBUILD
parent13e85f0eb2cdce808ecd787277e1448b1d0df163 (diff)
downloadaur-2237c3c8700b9edc585995a23db5e99c51684863.tar.gz
Fix title of README
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 14848fbfa590..3b5319d09052 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -57,7 +57,8 @@ package() {
local doc="$pkgdir/usr/share/doc/galene"
install -dm755 "$doc"
- for file in README README.FRONTEND README.PROTOCOL; do
+ pandoc --from=markdown --to html --standalone --metadata title="Galène" README > "${doc}/README.html"
+ for file in README.FRONTEND README.PROTOCOL; do
pandoc --from=markdown --to html --standalone --shift-heading-level-by=-1 "$file" > "${doc}/${file}.html"
done