File: linux-perf.preinst

package info (click to toggle)
linux 6.12.43-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,676,260 kB
  • sloc: ansic: 25,921,022; asm: 269,579; sh: 136,424; python: 65,440; makefile: 55,721; perl: 37,752; xml: 19,284; cpp: 5,895; yacc: 4,927; lex: 2,939; awk: 1,594; sed: 28; ruby: 25
file content (22 lines) | stat: -rw-r--r-- 631 bytes parent folder | download | duplicates (25)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

set -e

old_version_suffix="$(echo "$2" | sed -rn 's/^([0-9]+\.[0-9]+).*/\1/p')"
if [ "$old_version_suffix" ]; then
    dpkg-maintscript-helper symlink_to_dir \
	/usr/share/doc/linux-perf "linux-perf-${old_version_suffix}" 5.16\~rc8-1\~exp1 linux-perf -- "$@"
fi

if [ "$1" = install ] || [ "$1" = upgrade ]
then
	for wrapper in /usr/bin/perf \
		       /usr/share/bash-completion/completions/perf \
		       /usr/share/man/man1/perf.1.gz; do
	    diversion="${wrapper%/perf*}/perf.wrapper${wrapper#*/perf}"
	    dpkg-divert --package linux-perf --divert "$diversion" --rename \
		--add "$wrapper"
	done
fi

#DEBHELPER#