How To Install qt4pas on Fedora 34
Introduction
In this tutorial we learn how to install qt4pas
on Fedora 34.
What is qt4pas
The Free Pascal Qt4 binding allows Free Pascal to interface with the C++ Library Qt. This binding does not cover the whole Qt4 framework but only the classes needed by the Cross Platform Lazarus IDE to use Qt as a Widget set. qt4pas 2.5 22.fc34 x86_64 557 k qt4pas-2.5-22.fc34.src.rpm fedora Free Pascal Qt4 Binding http LGPLv3 The Free Pascal Qt4 binding allows Free Pascal to interface with the C++ Library Qt. This binding does not cover the whole Qt4 framework but only the classes needed by the Cross Platform Lazarus IDE to use Qt as a Widget set.
We can use yum
or dnf
to install qt4pas
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install qt4pas.
Install qt4pas on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install qt4pas
using dnf
by running the following command:
sudo dnf -y install qt4pas
Install qt4pas on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install qt4pas
using yum
by running the following command:
sudo yum -y install qt4pas
How To Uninstall qt4pas on Fedora 34
To uninstall only the qt4pas
package we can use the following command:
sudo dnf remove qt4pas
qt4pas Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/9e
/usr/lib/.build-id/9e/b89b178b2e2798c0ceec44f5de4c3cb3f04cf3
/usr/lib/libQt4Pas.so.5
/usr/lib/libQt4Pas.so.5.2
/usr/lib/libQt4Pas.so.5.2.5
/usr/share/doc/qt4pas
/usr/share/doc/qt4pas/README.TXT
/usr/share/licenses/qt4pas
/usr/share/licenses/qt4pas/COPYING.TXT
/usr/lib/.build-id
/usr/lib/.build-id/f7
/usr/lib/.build-id/f7/b28ba2060440dd9185d2821c45c54d1821766a
/usr/lib64/libQt4Pas.so.5
/usr/lib64/libQt4Pas.so.5.2
/usr/lib64/libQt4Pas.so.5.2.5
/usr/share/doc/qt4pas
/usr/share/doc/qt4pas/README.TXT
/usr/share/licenses/qt4pas
/usr/share/licenses/qt4pas/COPYING.TXT
References
- [qt4pas website](http://users.telenet.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html http://users.telenet.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html)
Summary
In this tutorial we learn how to install qt4pas
on Fedora 34 using yum and dnf.