LAPACK  3.5.0
LAPACK: Linear Algebra PACKage
 All Classes Files Functions Variables Typedefs Macros
liblapack-dev.postinst
Go to the documentation of this file.
1 #! /bin/sh
2 
3 set -e
4 
5 update-alternatives --install /usr/lib/liblapack.so liblapack.so /usr/lib/lapack/liblapack.so 20 \
6  --slave /usr/lib/liblapack.a liblapack.a /usr/lib/lapack/liblapack.a
7 
8 # Remove previous (deprecated) alternatives
9 # See bug #576801
10 update-alternatives --remove liblapackgf-3.a /usr/lib/liblapack.a
11 update-alternatives --remove liblapackgf-3.so /usr/lib/liblapack.so
12 
13 # dh_installdeb will replace this with shell code automatically
14 # generated by other debhelper scripts.
15 
16 #DEBHELPER#
17 
18 exit 0
19 
20