repo.or.cz
/
void-pkg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
limine: update to 8.6.0.
[void-pkg.git]
/
common
/
hooks
/
post-install
/
02-remove-perl-files.sh
blob
e8dad011e885c928bde4c0d2f8d04e9aeaa3a7f3
1
# This hook removes perl pod/.packlist files.
2
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
8
}