xbps-src: new pre-pkg hook that prints collected rdeps.
This commit is contained in:
parent
f7412cdf8d
commit
3a08e3d1b6
1 changed files with 7 additions and 0 deletions
7
common/hooks/pre-pkg/999-collected-rdeps.sh
Normal file
7
common/hooks/pre-pkg/999-collected-rdeps.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
# This hook displays resolved dependencies for a pkg.
|
||||
|
||||
hook() {
|
||||
if [ -e $PKGDESTDIR/rdeps ]; then
|
||||
echo " $(cat $PKGDESTDIR/rdeps)"
|
||||
fi
|
||||
}
|
Loading…
Reference in a new issue