Init, adding corrade,magnum,magnum-plugins,magnum-integration,magnum-extras, and magnum-examples 2025.47_1
This commit is contained in:
20
common/hooks/post-install/00-uncompress-manpages.sh
Normal file
20
common/hooks/post-install/00-uncompress-manpages.sh
Normal file
@@ -0,0 +1,20 @@
|
||||
# This hook uncompresses man(1) files.
|
||||
|
||||
hook() {
|
||||
local f lnkat mandir=${PKGDESTDIR}/usr/share/man
|
||||
|
||||
if [ ! -d $mandir ] ||
|
||||
[ -z "$(find $mandir -regex '.*\.\(gz\|bz2\)' -print -quit)" ]; then
|
||||
return 0
|
||||
fi
|
||||
|
||||
# rewrite symlinks
|
||||
find $mandir -type l -regex '.*\.\(gz\|bz2\)' | while read -r f; do
|
||||
lnkat=$(readlink "$f")
|
||||
ln -s ${lnkat%.*} ${f%.*}
|
||||
rm $f
|
||||
done
|
||||
|
||||
find $mandir -type f -name '*.gz' -exec gunzip -v -f {} + &>/dev/null
|
||||
find $mandir -type f -name '*.bz2' -exec bunzip2 -v -f {} + &>/dev/null
|
||||
}
|
||||
Reference in New Issue
Block a user