File: fizmo-console.postinst

package info (click to toggle)
fizmo-console 0.7.13-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 552 kB
  • ctags: 79
  • sloc: sh: 1,352; ansic: 350; xml: 190; makefile: 21
file content (15 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

if [ "$1" = "configure" ]; then
  update-alternatives \
    --install /usr/games/zcode-interpreter zcode-interpreter \
     /usr/games/fizmo-console-launcher 50 \
    --slave /usr/share/man/man6/zcode-interpreter.6.gz \
     zcode-interpreter-man-gz /usr/share/man/man6/fizmo-console.6.gz
fi

#DEBHELPER#

exit 0