mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-21 23:00:06 -07:00
man-pages: 5.12 (See #273)
This commit is contained in:
parent
dd98b3963e
commit
55172af426
29
extra/man-pages/build
Executable file
29
extra/man-pages/build
Executable 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"
|
1
extra/man-pages/checksums
Normal file
1
extra/man-pages/checksums
Normal file
@ -0,0 +1 @@
|
||||
7af5c960a05a7fac56813fe5bfa564a1c280e934363ae03911b67b0b8e23371e
|
1
extra/man-pages/sources
Normal file
1
extra/man-pages/sources
Normal 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
1
extra/man-pages/version
Normal file
@ -0,0 +1 @@
|
||||
5.12 1
|
Loading…
Reference in New Issue
Block a user