vp-build/common/hooks/post-install/02-remove-libtool-archives.sh

9 lines
242 B
Bash

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