File: libslepc-complex3.22.prerm

package info (click to toggle)
slepc 3.22.2%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 49,376 kB
  • sloc: ansic: 118,012; python: 4,887; f90: 3,620; cpp: 1,526; makefile: 811; sh: 311
file content (12 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh -e

DEB_HOST_MULTIARCH=__DEB_HOST_MULTIARCH__
SLEPC_VERSION=__SLEPC_VERSION__
SONAME=__SLEPC_SONAME_VERSION__

# Remove alternatives links
if [ "$1" = "remove" ]; then
  update-alternatives --remove libslepc.so.${SONAME} /usr/lib/${DEB_HOST_MULTIARCH}/libslepc_complex.so.${SLEPC_VERSION}
fi

#DEBHELPER#