You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
855 B
29 lines
855 B
13 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
update-alternatives --install \
|
||
|
/usr/bin/moc moc "/usr/bin/moc-tqt3" "45" \
|
||
|
--slave /usr/share/man/man1/moc.1.gz moc.1.gz \
|
||
|
"/usr/share/man/man1/moc-tqt3.1.gz"
|
||
|
|
||
|
update-alternatives --install \
|
||
|
/usr/bin/uic uic "/usr/bin/uic-tqt3" "45" \
|
||
|
--slave /usr/share/man/man1/uic.1.gz uic.1.gz \
|
||
|
"/usr/share/man/man1/uic-tqt3.1.gz"
|
||
|
|
||
|
update-alternatives --install \
|
||
|
/usr/bin/lupdate lupdate "/usr/bin/lupdate-tqt3" "45" \
|
||
|
--slave /usr/share/man/man1/lupdate.1.gz lupdate.1.gz \
|
||
|
"/usr/share/man/man1/lupdate-tqt3.1.gz"
|
||
|
|
||
|
update-alternatives --install \
|
||
|
/usr/bin/lrelease lrelease "/usr/bin/lrelease-tqt3" "45" \
|
||
|
--slave /usr/share/man/man1/lrelease.1.gz lrelease.1.gz \
|
||
|
"/usr/share/man/man1/lrelease-tqt3.1.gz"
|
||
|
|
||
|
update-alternatives --install \
|
||
|
/usr/bin/qmake qmake "/usr/bin/qmake-tqt3" "45" \
|
||
|
|
||
|
#DEBHELPER#
|