to XBPS_STATEDIR. There's no need for them to pollute PKGDESTDIR. Keep INSTALL.msg/REMOVE.msg handling as-is for now because it's a little more complex. Keep the pkglints for these files because xbps still ignores them.
7 lines
178 B
Bash
7 lines
178 B
Bash
# This hook displays resolved dependencies for a pkg.
|
|
|
|
hook() {
|
|
if [ -e "${XBPS_STATEDIR}/${pkgname}-rdeps" ]; then
|
|
echo " $(cat "${XBPS_STATEDIR}/${pkgname}-rdeps")"
|
|
fi
|
|
}
|