File: postinst

package info (click to toggle)
mate-dock-applet 0.75-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 512 kB
  • ctags: 2
  • sloc: python: 4,229; xml: 147; makefile: 128; sh: 13
file content (23 lines) | stat: -rwxr-xr-x 254 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

set -e

case "$1" in

	configure)
		glib-compile-schemas /usr/share/glib-2.0/schemas
	;;

	abort-upgrade|abort-remove|abort-deconfigure)
	;;

	*)
		echo "postinst called with unknown argument \`$1'" >&2
		exit 1
	;;

esac

#DEBHELPER#

exit 0