Remove the hook to compress manpages... no compressed manpages from now on.
This commit is contained in:
parent
1e066e3658
commit
5070941df3
1 changed files with 0 additions and 30 deletions
|
@ -1,30 +0,0 @@
|
||||||
# This hook compresses manual pages with gzip(1).
|
|
||||||
|
|
||||||
hook() {
|
|
||||||
local fpattern="s|${PKGDESTDIR}||g;s|^\./$||g;/^$/d"
|
|
||||||
local j f dirat lnkat newlnk
|
|
||||||
|
|
||||||
if [ ! -d "${PKGDESTDIR}/usr/share/man" ]; then
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
find ${PKGDESTDIR}/usr/share/man -type f -follow | while read f
|
|
||||||
do
|
|
||||||
j=$(echo "$f"|sed -e "$fpattern")
|
|
||||||
[ "$j" = "" ] && continue
|
|
||||||
if $(echo "$j"|grep -q '.*.gz$'); then
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
if [ -h ${PKGDESTDIR}/"$j" ]; then
|
|
||||||
dirat=$(dirname "$j")
|
|
||||||
lnkat=$(readlink ${PKGDESTDIR}/"$j")
|
|
||||||
newlnk=$(basename "$j")
|
|
||||||
rm -f ${PKGDESTDIR}/"$j"
|
|
||||||
cd ${PKGDESTDIR}/"$dirat"
|
|
||||||
ln -s "${lnkat}".gz "${newlnk}".gz
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
echo " Compressing manpage: $j..."
|
|
||||||
gzip -nfq9 ${PKGDESTDIR}/"$j"
|
|
||||||
done
|
|
||||||
}
|
|
Loading…
Reference in a new issue