File: cscope.preinst

package info (click to toggle)
cscope 15.9-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 3,728 kB
  • sloc: ansic: 9,444; sh: 4,730; lex: 1,690; lisp: 1,594; perl: 597; yacc: 588; makefile: 57; ml: 56
file content (26 lines) | stat: -rwxr-xr-x 314 bytes parent folder | download | duplicates (6)
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
#!/bin/sh -e

set -e

cleanup_sitestart() {
	if [ -e /etc/emacs/site-start.d/50cscope.el ]; then
		rm -f /etc/emacs/site-start.d/50cscope.el
	fi
}

case "$1" in
	upgrade)
	cleanup_sitestart
	;;

	install|abort-upgrade)
	;;

	*)
	echo "$0 called with unknown argument '$1'" >&2
	exit 1
	;;
esac

#DEBHELPER#
exit 0