blob: 789e54f843089e74975bd57f9a0d28269733faf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/bin/sh
set -e
case "$1" in
configure)
update-alternatives --install \
/usr/bin/moc moc "/usr/bin/tqmoc" "45" \
--slave /usr/share/man/man1/moc.1.gz moc.1.gz \
"/usr/share/man/man1/tqmoc.1.gz"
update-alternatives --install \
/usr/bin/uic uic "/usr/bin/tquic" "45" \
--slave /usr/share/man/man1/uic.1.gz uic.1.gz \
"/usr/share/man/man1/tquic.1.gz"
update-alternatives --install \
/usr/bin/lupdate lupdate "/usr/bin/tqlupdate" "45" \
--slave /usr/share/man/man1/lupdate.1.gz lupdate.1.gz \
"/usr/share/man/man1/tqlupdate.1.gz"
update-alternatives --install \
/usr/bin/lrelease lrelease "/usr/bin/tqlrelease" "45" \
--slave /usr/share/man/man1/lrelease.1.gz lrelease.1.gz \
"/usr/share/man/man1/tqlrelease.1.gz"
update-alternatives --install \
/usr/bin/qmake qmake "/usr/bin/tqmake" "45" \
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
|