New issue by paoloschi on void-packages repository https://github.com/void-linux/void-packages/issues/42928 Description: **xtools-minimal** includes **xmandoc** which… ``` $ cat /bin/xmandoc #!/bin/sh # xmandoc MANPAGE - read manpage of possibly not installed package xlocate "man/man..\?/$1\.[0-9]" 2>/dev/null | { grep . || { echo "xmandoc: No entry for $1 found." 1>&2; exit 1; } } | while read -r pkg page; do page=${page#* -> } xbps-query --cat=$page ${pkg%-*} | mandoc -a done ``` ...depends on **xlocate** who is included in **xtools** package but not in **xtools-minimal**