evolution-packages/common/hooks/pre-install/00-libdir.sh

11 lines
267 B
Bash
Raw Normal View History

2023-08-05 21:19:04 +01:00
# This hook creates the wordsize specific libdir symlink.
hook() {
if [ -L ${PKGDESTDIR}/usr/lib${XBPS_TARGET_WORDSIZE} ]; then
return 0
elif [ "${pkgname}" != "base-files" ]; then
vmkdir usr/lib
ln -sf lib ${PKGDESTDIR}/usr/lib${XBPS_TARGET_WORDSIZE}
fi
}