prerm is in z88dk-bin 1.8.ds1-10.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | #!/bin/sh
set -e
update-alternatives --remove zcc /usr/bin/z88dk-zcc
update-alternatives --remove appmake /usr/bin/z88dk-appmake
update-alternatives --remove copt /usr/bin/z88dk-copt
update-alternatives --remove sccz80 /usr/bin/z88dk-sccz80
update-alternatives --remove z80asm /usr/bin/z88dk-z80asm
update-alternatives --remove zcpp /usr/bin/z88dk-zcpp
|