mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-12-23 12:41:05 +01:00
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
|
|
}
|