Please refer to this link How to install Qt version 4.8.1 in Kubuntu 14.04.
I have run
./configure
make
sudo make install
Where is .deb file created after run the command sudo make install
in qt 4.8 installation process so that I can complete my QT 4.8 installation? I am using Ubuntu Mate OS.
I can't understand these three lines as below in the above link:
- This will make a .deb of the source you can install as a normal application via apt
sudo dpkg -i path/to/output.deb
- Change path/to/output.deb to the path of the created .deb file.
I can't find the "path/to/output.deb" of created .deb file.
Please help...
sudo make install
usually compiles source into a binary; the output being a binary executable - not a .deb file. View the make file itself to see what it does. Your provided link does something different to what you did. (it installs the binary itself without using deb/dpkg/apt/..) – guiverc Jul 17 '19 at 05:29make install
is different tocheckinstall
was my point; but what is built depends on the recipe in the makefile which I have not looked at. Your line in the question "sudo make install (same as sudo checkinstall)" seems to equatemake install
withcheckinstall
which is not valid. – guiverc Jul 17 '19 at 05:58libqt4*
orqt4-default
from Ubuntu repositories? The question you linked refers to Ubuntu [tag:14.04] which is outdated. – Melebius Jul 17 '19 at 06:52checkinstall
, it would be a generic question with Qt as an example. But as @guiverc pointed, there's some uncertainty in the question. – Kulfy Jul 20 '19 at 07:46