postinst is in apt-cudf 3.1.3-7build1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/sh
set -e
# Will be invoked both at apt-cudf configuration time and each time the trigger
# monitoring CUDF solver dir (usually /usr/share/cudf/solvers/) is activated.
#
update-cudf-solvers
exit 0
|