1
0
Fork 0
mirror of https://github.com/xHyroM/void-packages.git synced 2024-12-23 12:41:05 +01:00
void-packages/common/hooks/pre-pkg/999-collected-rdeps.sh

8 lines
178 B
Bash
Raw Normal View History

2024-03-29 08:12:19 +01:00
# This hook displays resolved dependencies for a pkg.
hook() {
if [ -e "${XBPS_STATEDIR}/${pkgname}-rdeps" ]; then
echo " $(cat "${XBPS_STATEDIR}/${pkgname}-rdeps")"
2024-03-29 08:12:19 +01:00
fi
}