pkgs/common/hooks/post-install/02-remove-perl-files.sh
2022-04-12 14:56:19 -04:00

8 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
}