File: libcoda16.preinst

package info (click to toggle)
coda 2.25.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,008 kB
  • sloc: ansic: 121,488; javascript: 6,788; java: 2,369; python: 1,695; yacc: 1,007; makefile: 598; lex: 204; sh: 105; fortran: 60; xml: 5
file content (19 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

# Pre-inst script for libcoda16 
# Copyright (C) 2025 Alastair McKinstry <mckinstry@debian.org>
# Released unde the BSD license

set -e

# Remove conflicting file accidentally packaged in libcoda15
# This should affect sid/testing installations only. stable bookworm->trixie unaffected.
# see #1093035

case "$1" in
  upgrade|install)
    rm -f /usr/lib/*/libcoda.so.16.0.9
  ;;
esac

#DEBHELPER#