How To Install libdockapp on Fedora 34
Introduction
In this tutorial we learn how to install libdockapp
on Fedora 34.
What is libdockapp
LibDockApp is a library that provides a framework for developing dockapps. It provides functions and structures to define and display command-line options, create a dockable icon, handle events, etc. The goal of the library is to provide a simple, yet clean interface and standardize the ways in which dockapps are developed. A dockapp developed using libDockApp will automatically behave well under most window managers, and especially well under Window Maker. libdockapp 0.7.3 4.fc34 x86_64 32 k libdockapp-0.7.3-4.fc34.src.rpm fedora DockApp Development Standard Library https MIT LibDockApp is a library that provides a framework for developing dockapps. It provides functions and structures to define and display command-line options, create a dockable icon, handle events, etc. The goal of the library is to provide a simple, yet clean interface and standardize the ways in which dockapps are developed. A dockapp developed using libDockApp will automatically behave well under most window managers, and especially well under Window Maker.
We can use yum
or dnf
to install libdockapp
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libdockapp.
Install libdockapp 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 libdockapp
using dnf
by running the following command:
sudo dnf -y install libdockapp
Install libdockapp 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 libdockapp
using yum
by running the following command:
sudo yum -y install libdockapp
How To Uninstall libdockapp on Fedora 34
To uninstall only the libdockapp
package we can use the following command:
sudo dnf remove libdockapp
libdockapp Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/61
/usr/lib/.build-id/61/ab677b171da6f52df1f56c0c01179cfc30516c
/usr/lib64/libdockapp.so.3
/usr/lib64/libdockapp.so.3.0.1
/usr/share/doc/libdockapp
/usr/share/doc/libdockapp/AUTHORS
/usr/share/doc/libdockapp/BUGS
/usr/share/doc/libdockapp/COPYING
/usr/share/doc/libdockapp/NEWS
/usr/share/doc/libdockapp/README
/usr/lib/.build-id
/usr/lib/.build-id/c5
/usr/lib/.build-id/c5/f98c3d063b12bbb853e9b52ac93413e7f97380
/usr/lib/libdockapp.so.3
/usr/lib/libdockapp.so.3.0.1
/usr/share/doc/libdockapp
/usr/share/doc/libdockapp/AUTHORS
/usr/share/doc/libdockapp/BUGS
/usr/share/doc/libdockapp/COPYING
/usr/share/doc/libdockapp/NEWS
/usr/share/doc/libdockapp/README
References
- [libdockapp website](https://www.dockapps.net/libdockapp https://www.dockapps.net/libdockapp)
Summary
In this tutorial we learn how to install libdockapp
on Fedora 34 using yum and dnf.