Init, adding corrade,magnum,magnum-plugins,magnum-integration,magnum-extras, and magnum-examples 2025.47_1
This commit is contained in:
42
common/hooks/post-install/00-compress-info-files.sh
Normal file
42
common/hooks/post-install/00-compress-info-files.sh
Normal file
@@ -0,0 +1,42 @@
|
||||
# This hook compresses info(1) files.
|
||||
|
||||
hook() {
|
||||
local f j dirat lnkat newlnk
|
||||
local fpattern="s|${PKGDESTDIR}||g;s|^\./$||g;/^$/d"
|
||||
#
|
||||
# Find out if this package contains info files and compress
|
||||
# all them with gzip.
|
||||
#
|
||||
if [ ! -f ${PKGDESTDIR}/usr/share/info/dir ]; then
|
||||
return 0
|
||||
fi
|
||||
# Always remove this file if curpkg is not texinfo.
|
||||
if [ "$pkgname" != "texinfo" ]; then
|
||||
rm -f ${PKGDESTDIR}/usr/share/info/dir
|
||||
fi
|
||||
|
||||
find ${PKGDESTDIR}/usr/share/info -type f -follow | while read -r f; do
|
||||
j=$(echo "$f"|sed -e "$fpattern")
|
||||
[ "$j" = "" ] && continue
|
||||
[ "$j" = "/usr/share/info/dir" ] && continue
|
||||
# Ignore compressed files.
|
||||
if [[ "$j" =~ .*.gz$ ]]; then
|
||||
continue
|
||||
fi
|
||||
# Ignore non info files.
|
||||
if ! [[ "$j" =~ .*.info$ ]] && ! [[ "$j" =~ .*.info-[0-9]*$ ]]; then
|
||||
continue
|
||||
fi
|
||||
if [ -h ${PKGDESTDIR}/"$j" ]; then
|
||||
dirat="${j%/*}/"
|
||||
lnkat=$(readlink ${PKGDESTDIR}/"$j")
|
||||
newlnk="${j##*/}"
|
||||
rm -f ${PKGDESTDIR}/"$j"
|
||||
cd ${PKGDESTDIR}/"$dirat"
|
||||
ln -s "${lnkat}".gz "${newlnk}".gz
|
||||
continue
|
||||
fi
|
||||
echo " Compressing info file: $j..."
|
||||
gzip -nfq9 ${PKGDESTDIR}/"$j"
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user