2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 22:12:27 +00:00

man-pages: 5.12 (See #273)

This commit is contained in:
Dylan Araps 2021-07-12 12:00:10 +03:00
parent dd98b3963e
commit 55172af426
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
4 changed files with 32 additions and 0 deletions

29
extra/man-pages/build Executable file
View File

@ -0,0 +1,29 @@
#!/bin/sh -e
#
# The Makefile uses install commands which are incompatible
# with busybox's install implementation (specifically -T).
mkdir -p "$1/usr/share/man"
# The sources are set out as follows.
#
# 1. user commands (intro, plus a few other pages)
# 2. system calls
# 3. libc calls
# 4. devices (e.g., hd, sd)
# 5. file formats and configuration files (e.g., wtmp, /etc/passwd)
# 6. games (intro only)
# 7. overviews, conventions, macro packages, etc.
# 8. system administration (intro, plus a few other pages)
#
# Manual pages which relate to glibc or are otherwise provided by
# other packages (tzdata, etc) are excluded.
for i in 2 4 5 7; do
cp -Rf "man$i" "$1/usr/share/man"
done
# Provided by mandoc.
rm -f "$1/usr/share/man/man7/man.7"
# Provided by tzdata.
rm -f "$1/usr/share/man/man5/tzfile.5"

View File

@ -0,0 +1 @@
7af5c960a05a7fac56813fe5bfa564a1c280e934363ae03911b67b0b8e23371e

1
extra/man-pages/sources Normal file
View File

@ -0,0 +1 @@
https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/man-pages-5.12.tar.xz

1
extra/man-pages/version Normal file
View File

@ -0,0 +1 @@
5.12 1