mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-28 20:17:21 +02:00
7 lines
142 B
Bash
7 lines
142 B
Bash
# This hook displays resolved dependencies for a pkg.
|
|
|
|
hook() {
|
|
if [ -e $PKGDESTDIR/rdeps ]; then
|
|
echo " $(cat $PKGDESTDIR/rdeps)"
|
|
fi
|
|
}
|