summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2020-01-07 22:46:32 -0500
committerTimo Teräs <timo.teras@iki.fi>2020-01-26 09:01:26 +0200
commit7c2c68df692b8a4ab5ede02bef3e9af7256581aa (patch)
tree7671ee1175a58a6de31dc7f41954148ea6e9fbd8 /doc
parentf3412acb853ddbd330c5fe6da93e052a40c0a3d4 (diff)
downloadapk-tools-7c2c68df692b8a4ab5ede02bef3e9af7256581aa.tar.gz
apk-tools-7c2c68df692b8a4ab5ede02bef3e9af7256581aa.tar.bz2
apk-tools-7c2c68df692b8a4ab5ede02bef3e9af7256581aa.tar.xz
apk-tools-7c2c68df692b8a4ab5ede02bef3e9af7256581aa.zip
add apk-manifest(8)
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile1
-rw-r--r--doc/apk-manifest.8.scd33
2 files changed, 34 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile
index c990e8d..bf74f2a 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -14,6 +14,7 @@ docs: $(obj)/apk.8 \
$(obj)/apk-index.8 \
$(obj)/apk-info.8 \
$(obj)/apk-list.8 \
+ $(obj)/apk-manifest.8 \
$(obj)/apk-policy.8 \
$(obj)/apk-update.8 \
$(obj)/apk-upgrade.8 \
diff --git a/doc/apk-manifest.8.scd b/doc/apk-manifest.8.scd
new file mode 100644
index 0000000..37c1508
--- /dev/null
+++ b/doc/apk-manifest.8.scd
@@ -0,0 +1,33 @@
+apk-manifest(8)
+
+# NAME
+
+apk manifest - Show checksums of package contents
+
+# SYNOPSIS
+
+*apk manifest* [<_options_>...] _packages_...
+
+# DESCRIPTION
+
+*apk manifest* prints the checksums of files in the listed packages. One file
+is printed per line, the checksum first, followed by a space, and then the path
+to the file.
+
+The checksum itself is printed in the format _algorithm_:_hash_. Supported
+algorithms are:
+
+- *md5*
+- *sha1*
+
+*sha1* is used for new packages.
+
+# OPTIONS
+
+*apk manifest* does not support any specific options. See *apk*(8) for global
+options.
+
+# AUTHORS
+
+Natanael Copa <ncopa@alpinelinux.org>++
+Timo Teräs <_timo.teras@iki.fi_>