File: lua5.3.prerm

package info (click to toggle)
lua5.3 5.3.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,396 kB
  • sloc: ansic: 16,652; makefile: 282; sh: 18
file content (10 lines) | stat: -rw-r--r-- 204 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e

case "$1" in
    remove)
        update-alternatives --remove lua-interpreter /usr/bin/lua5.3
        update-alternatives --remove lua-compiler /usr/bin/luac5.3
        ;;
esac

#DEBHELPER#