File: liblapack64-3.prerm.in

package info (click to toggle)
lapack 3.11.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 76,136 kB
  • sloc: fortran: 605,191; ansic: 197,715; makefile: 5,018; f90: 1,379; sh: 326; python: 266
file content (13 lines) | stat: -rw-r--r-- 226 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ "$1" != "upgrade" ]
then
    update-alternatives --remove liblapack64.so.3-@DEB_HOST_MULTIARCH@ \
                        /usr/lib/@DEB_HOST_MULTIARCH@/lapack64/liblapack64.so.3
fi

#DEBHELPER#

exit 0