config is in liblapack3gf 3.3.1-1.
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 12 13 14 15 16 17 18 19 | #!/bin/sh
set -e
#set -x
. /usr/share/debconf/confmodule
#db_fset shared/blas_lapack isdefault true
STAT=0
case $STAT in
4|3) db_input high liblapack3gf/crit ; db_input high liblapack3gf/ttr;;
2) db_input medium liblapack3gf/sig ; db_input medium liblapack3gf/ttr;;
1) db_input low liblapack3gf/minor ; db_input low liblapack3gf/ttr;;
*);;
esac
db_go
|