File: wesnoth-BRANCH-core.prerm.in

package info (click to toggle)
wesnoth-1.14 1%3A1.14.15-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 829,408 kB
  • sloc: cpp: 229,143; java: 29,664; python: 22,851; lisp: 7,550; javascript: 3,074; sh: 2,993; xml: 1,772; perl: 1,501; ansic: 1,083; makefile: 260; php: 98; sql: 47; sed: 44
file content (22 lines) | stat: -rw-r--r-- 297 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# prerm script for wesnoth-BRANCH-core
# Copyright 2010 by Rhonda D'Vine <rhonda@debian.org>
# Licensed under MIT

set -e

setup_alternatives()
{
	update-alternatives --remove wesnoth /usr/games/wesnoth-BRANCH
}


case "$1" in
	remove)
		setup_alternatives
	;;
esac

#DEBHELPER#

exit 0