/usr/share/pdebuild-cross/hookdir/E00-check-xapt is in pdebuild-cross 2.2.20.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | #!/bin/sh
set -e
if [ ! -x "/usr/sbin/xapt" ]; then
AV=`/usr/bin/apt-cache policy xapt 2>/dev/null`
if [ -n "$AV" ]; then
/usr/bin/apt-get -y install xapt
fi
fi
|