File: postinst-perl6

package info (click to toggle)
dh-perl6 0.4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 68 kB
  • sloc: perl: 43; makefile: 10
file content (14 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
case "$1" in
    configure)
        /usr/share/perl6/rakudo-helper.pl --install #PACKAGE#
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
        # nothing to do
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac