evolution-packages/common/hooks/post-install/01-remove-misc.sh

12 lines
236 B
Bash
Raw Permalink Normal View History

2023-08-05 21:19:04 +01:00
# hook to remove misc files.
hook() {
case "$XBPS_TARGET_MACHINE" in
*-musl) ;;
*) return 0;;
esac
# Remove charset.alias on musl
if [ -f $PKGDESTDIR/usr/lib/charset.alias ]; then
rm -f $PKGDESTDIR/usr/lib/charset.alias
fi
}