File: lua5.1.prerm

package info (click to toggle)
lua5.1 5.1.5-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,316 kB
  • sloc: ansic: 12,763; makefile: 408; sh: 73
file content (10 lines) | stat: -rw-r--r-- 204 bytes parent folder | download | duplicates (8)
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.1
        update-alternatives --remove lua-compiler /usr/bin/luac5.1
        ;;
esac

#DEBHELPER#