File: zutils.preinst

package info (click to toggle)
zutils 1.15-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 620 kB
  • sloc: cpp: 3,383; sh: 828; makefile: 209
file content (29 lines) | stat: -rwxr-xr-x 636 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh

set -e

case "${1}" in
	install)
		for FILE in zcat zcmp zdiff zegrep zfgrep zgrep
		do
			cp -af "/usr/bin/${FILE}" "/usr/bin/${FILE}.gzip"
			dpkg-divert --package zutils --quiet --add --no-rename --divert "/usr/bin/${FILE}.gzip" "/usr/bin/${FILE}"

			cp -af "/usr/share/man/man1/${FILE}.1.gz" "/usr/share/man/man1/${FILE}.gzip.1.gz"
			dpkg-divert --package zutils --quiet --add --no-rename --divert "/usr/share/man/man1/${FILE}.gzip.1.gz" "/usr/share/man/man1/${FILE}.1.gz"
		done
		;;

	abort-upgrade|upgrade)

		;;

	*)
		echo "preinst called with unknown argument \`${1}'" >&2
		exit 1
		;;
esac

#DEBHELPER#

exit 0