How To Install libcue on Fedora 34

libcue is Cue sheet parser library Cue sheet parser library

Introduction

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

What is libcue

Libcue is intended for parsing a so-called cue sheet from a char string or a file pointer. For handling of the parsed data a convenient API is available. libcue 2.2.1 7.fc34 x86_64 35 k libcue-2.2.1-7.fc34.src.rpm fedora Cue sheet parser library https GPLv2 and BSD Libcue is intended for parsing a so-called cue sheet from a char string or a file pointer. For handling of the parsed data a convenient API is available.

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

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

sudo dnf -y install libcue

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

sudo yum -y install libcue

How To Uninstall libcue on Fedora 34

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

sudo dnf remove libcue

libcue Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/ab
/usr/lib/.build-id/ab/5c698c11d5029f3deb7d76adc502a620aa959a
/usr/lib64/libcue.so.2
/usr/lib64/libcue.so.2.2.1
/usr/share/doc/libcue
/usr/share/doc/libcue/ChangeLog
/usr/share/doc/libcue/README.md
/usr/share/licenses/libcue
/usr/share/licenses/libcue/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/da
/usr/lib/.build-id/da/f05e7934830ba4bef36486e29822d9220aba5d
/usr/lib/libcue.so.2
/usr/lib/libcue.so.2.2.1
/usr/share/doc/libcue
/usr/share/doc/libcue/ChangeLog
/usr/share/doc/libcue/README.md
/usr/share/licenses/libcue
/usr/share/licenses/libcue/LICENSE

References

Summary

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