This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
|
# 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
|
|
}
|