File: sisc.prerm

package info (click to toggle)
sisc 1.16.6-1.2
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 8,492 kB
  • sloc: lisp: 69,834; xml: 19,482; java: 17,841; sh: 125; makefile: 54
file content (14 lines) | stat: -rw-r--r-- 282 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

set -e

if [ "$1" = "remove" ]; then
   inl="scheme-r4rs scheme-r5rs scheme-srfi-0 scheme-srfi-7 scheme-srfi-55"
   inl="$inl scheme-ieee-1178-1900"
   
   for int in $inl; do
       update-alternatives --remove "$int" /usr/share/sisc/srfi-22.sh
   done
fi

#DEBHELPER#