File: liblua5.4-dev.postinst.in

package info (click to toggle)
lua5.4 5.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,596 kB
  • sloc: ansic: 19,534; makefile: 307; sh: 35
file content (15 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e

case "$1" in
    configure)
        update-alternatives \
            --install /usr/lib/@DEB_HOST_MULTIARCH@/pkgconfig/lua.pc \
                      lua-pkgconfig-@DEB_HOST_MULTIARCH@ \
                      /usr/lib/@DEB_HOST_MULTIARCH@/pkgconfig/lua5.4.pc 20 \
            --slave /usr/lib/@DEB_HOST_MULTIARCH@/pkgconfig/lua-c++.pc \
                    lua-c++-pkgconfig-@DEB_HOST_MULTIARCH@ \
                    /usr/lib/@DEB_HOST_MULTIARCH@/pkgconfig/lua5.4-c++.pc
        ;;
esac

#DEBHELPER#