How To Install gtkd on Fedora 34

gtkd is D binding and OO wrapper of GTK+ D binding and OO wrapper of GTK+

Introduction

In this tutorial we learn how to install gtkd on Fedora 34.

What is gtkd

GTK+ is a highly usable, feature rich toolkit for creating graphical user interfaces which boasts cross platform compatibility and an easy to use API. gtkd 3.9.0 5.fc34 x86_64 9.1 M gtkd-3.9.0-5.fc34.src.rpm fedora D binding and OO wrapper of GTK+ https LGPLv3+ with exceptions GTK+ is a highly usable, feature rich toolkit for creating graphical user interfaces which boasts cross platform compatibility and an easy to use API.

We can use yum or dnf to install gtkd on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install gtkd.

Install gtkd 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 gtkd using dnf by running the following command:

sudo dnf -y install gtkd

Install gtkd 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 gtkd using yum by running the following command:

sudo yum -y install gtkd

How To Uninstall gtkd on Fedora 34

To uninstall only the gtkd package we can use the following command:

sudo dnf remove gtkd

gtkd Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/06
/usr/lib/.build-id/06/5d11b9d15fe25d0dc881f4bb0da9854cbdef89
/usr/lib/.build-id/10
/usr/lib/.build-id/10/2eff941e7f6c1dac9da851a1d8371473edfa06
/usr/lib/.build-id/1a
/usr/lib/.build-id/1a/c9ed242df907e582a44a58afac21b761c41bf7
/usr/lib/.build-id/59
/usr/lib/.build-id/59/670e815105b683ea2eead1f8873fccc7b31db2
/usr/lib/.build-id/74
/usr/lib/.build-id/74/1bb913fbf311386fc81696076baf89f9bc2c49
/usr/lib/.build-id/f9
/usr/lib/.build-id/f9/f5f0a3fc704c59ff103c21f13b5d5614f27598
/usr/lib/libgstreamerd-3.so.0
/usr/lib/libgstreamerd-3.so.0.9.0
/usr/lib/libgtkd-3.so.0
/usr/lib/libgtkd-3.so.0.9.0
/usr/lib/libgtkdgl-3.so.0
/usr/lib/libgtkdgl-3.so.0.9.0
/usr/lib/libgtkdsv-3.so.0
/usr/lib/libgtkdsv-3.so.0.9.0
/usr/lib/libpeasd-3.so.0
/usr/lib/libpeasd-3.so.0.9.0
/usr/lib/libvted-3.so.0
/usr/lib/libvted-3.so.0.9.0
/usr/share/doc/gtkd
/usr/share/doc/gtkd/AUTHORS
/usr/share/doc/gtkd/CHANGELOG
/usr/share/doc/gtkd/README.md
/usr/share/licenses/gtkd
/usr/share/licenses/gtkd/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/2a
/usr/lib/.build-id/2a/daae26b8a8d9a6ad457f996e0dd788ed4d7223
/usr/lib/.build-id/42
/usr/lib/.build-id/42/bd1859a0db5bbaa0ebd4a806019d9e5b74a3c5
/usr/lib/.build-id/a5
/usr/lib/.build-id/a5/8340df2d903b2a19865107afb6ab6e4242c425
/usr/lib/.build-id/bb
/usr/lib/.build-id/bb/b1b51046823c86086dfa62e2f25a7842cf26eb
/usr/lib/.build-id/c6
/usr/lib/.build-id/c6/e3c53e82c99824ad200775e2f82721ae4d9b17
/usr/lib/.build-id/cb
/usr/lib/.build-id/cb/d0897dae5d5b230f1e28dcf8a2103d5e63b046
/usr/lib64/libgstreamerd-3.so.0
/usr/lib64/libgstreamerd-3.so.0.9.0
/usr/lib64/libgtkd-3.so.0
/usr/lib64/libgtkd-3.so.0.9.0
/usr/lib64/libgtkdgl-3.so.0
/usr/lib64/libgtkdgl-3.so.0.9.0
/usr/lib64/libgtkdsv-3.so.0
/usr/lib64/libgtkdsv-3.so.0.9.0
/usr/lib64/libpeasd-3.so.0
/usr/lib64/libpeasd-3.so.0.9.0
/usr/lib64/libvted-3.so.0
/usr/lib64/libvted-3.so.0.9.0
/usr/share/doc/gtkd
/usr/share/doc/gtkd/AUTHORS
/usr/share/doc/gtkd/CHANGELOG
/usr/share/doc/gtkd/README.md
/usr/share/licenses/gtkd
/usr/share/licenses/gtkd/COPYING

References

Summary

In this tutorial we learn how to install gtkd on Fedora 34 using yum and dnf.