pkgs/common/hooks/pre-pkg/999-collected-rdeps.sh
2022-04-12 14:56:19 -04:00

7 lines
142 B
Bash

# This hook displays resolved dependencies for a pkg.
hook() {
if [ -e $PKGDESTDIR/rdeps ]; then
echo " $(cat $PKGDESTDIR/rdeps)"
fi
}