File: tsdecrypt.postinst

package info (click to toggle)
tsdecrypt 10.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,268 kB
  • sloc: ansic: 14,377; makefile: 252; sh: 166
file content (12 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] ; then
    update-alternatives --install /usr/bin/tsdecrypt \
        tsdecrypt /usr/bin/tsdecrypt_dvbcsa 40
    update-alternatives --install /usr/bin/tsdecrypt \
        tsdecrypt /usr/bin/tsdecrypt_ffdecsa 20
fi

#DEBHELPER#