Files
void-packages/common/hooks/post-install/02-remove-perl-files.sh
2015-11-26 22:27:55 +01:00

9 lines
229 B
Bash

# This hook removes perl pod/.packlist files.
hook() {
if [ "$pkgname" != "perl" -a -d "${PKGDESTDIR}" ]; then
find ${PKGDESTDIR} -type f -name perllocal.pod -delete
find ${PKGDESTDIR} -type f -name .packlist -delete
fi
}