Se você ler o script install.sh
, perceberá:
function check_qt3
{
QT3LIB=$(find /usr/lib -name "libqt-mt.so*")
echo $QT3LIB
if [ "$QT3LIB" ];then
echo "check QT3 Runtime Library successfully."
else
mymessagebox "Sorry This software will not run until you install "QT3 Runtime Library". You can refer to Operaing System installation CD or Homepage to find out the QT3 Runtime Library installation package. This installation process will not continue until you install QT3 Runtime Library first."
exit -1
fi
}
O script verifica o /usr/lib/libqt-mt.so*
. Se o arquivo não for encontrado, a mensagem solicitará que você instale o Qt3. Depois disso, a instalação pode continuar.
Para instalar o Qt3: como instalar o pacote qt3-dev-tools