2014-09-22 15:53:38 +02:00
|
|
|
# This hook removes localized man(1) files
|
|
|
|
|
|
|
|
hook() {
|
|
|
|
local section mandir=${PKGDESTDIR}/usr/share/man
|
|
|
|
|
|
|
|
for section in ${mandir}/*; do
|
|
|
|
if ! [ -d ${section} ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
case ${section} in
|
2014-09-23 17:43:11 +02:00
|
|
|
${mandir}/man[0-9n]|${mandir}/man[013][fp])
|
|
|
|
continue;;
|
|
|
|
${mandir}/cat[0-9n]|${mandir}/cat[013][fp])
|
2014-09-22 15:53:38 +02:00
|
|
|
continue;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
rm -rf ${section}
|
|
|
|
done
|
|
|
|
}
|