limine: update to 8.6.0.
[void-pkg.git] / common / hooks / post-install / 02-remove-perl-files.sh
blobe8dad011e885c928bde4c0d2f8d04e9aeaa3a7f3
1 # This hook removes perl pod/.packlist files.
3 hook() {
4 if [ "$pkgname" != "perl" -a -d "${PKGDESTDIR}" ]; then
5 find ${PKGDESTDIR} -type f -name perllocal.pod -delete
6 find ${PKGDESTDIR} -type f -name .packlist -delete
7 fi