File: python3-qrcode.postinst

package info (click to toggle)
python-qrcode 5.3-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 296 kB
  • ctags: 219
  • sloc: python: 1,552; sh: 32; makefile: 22
file content (13 lines) | stat: -rw-r--r-- 235 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

mandir=/usr/share/man

if [ "$1" = "configure" ] ; then
	update-alternatives --install /usr/bin/qr qr /usr/bin/python3-qr 200 --slave $mandir/man1/qr.1.gz qr.1.gz $mandir/man1/python3-qr.1.gz
fi

#DEBHELPER#

exit 0