common/hooks: add some hooks moved from xbps-src (not yet used).
This commit is contained in:
parent
372ed2763f
commit
907f392e4d
11 changed files with 486 additions and 0 deletions
8
common/hooks/post-install/02-remove-libtool-archives.sh
Normal file
8
common/hooks/post-install/02-remove-libtool-archives.sh
Normal file
|
@ -0,0 +1,8 @@
|
|||
# This hook removes libtool archives (.la) unless $keep_libtool_archives is set.
|
||||
|
||||
hook() {
|
||||
if [ -z "$keep_libtool_archives" ]; then
|
||||
msg_normal "$pkgver: removing libtool archives...\n"
|
||||
find ${PKGDESTDIR} -type f -name *.la -delete
|
||||
fi
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue