How To Install wildmidi-devel on CentOS 8

wildmidi-devel is Development files for wildmidi

Introduction

In this tutorial we learn how to install wildmidi-devel on CentOS 8.

What is wildmidi-devel

The wildmidi-devel package contains libraries and header files for developing applications that use wildmidi.

We can use yum or dnf to install wildmidi-devel on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install wildmidi-devel.

Install wildmidi-devel on CentOS 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install wildmidi-devel using dnf by running the following command:

sudo dnf -y install wildmidi-devel

Install wildmidi-devel on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install wildmidi-devel using yum by running the following command:

sudo yum -y install wildmidi-devel

How To Uninstall wildmidi-devel on CentOS 8

To uninstall only the wildmidi-devel package we can use the following command:

sudo dnf remove wildmidi-devel

wildmidi-devel Package Contents on CentOS 8

/usr/include/wildmidi_lib.h
/usr/lib64/libWildMidi.so
/usr/lib64/pkgconfig/wildmidi.pc
/usr/share/man/man3/WildMidi_ClearError.3.gz
/usr/share/man/man3/WildMidi_Close.3.gz
/usr/share/man/man3/WildMidi_ConvertBufferToMidi.3.gz
/usr/share/man/man3/WildMidi_ConvertToMidi.3.gz
/usr/share/man/man3/WildMidi_FastSeek.3.gz
/usr/share/man/man3/WildMidi_GetError.3.gz
/usr/share/man/man3/WildMidi_GetInfo.3.gz
/usr/share/man/man3/WildMidi_GetLyric.3.gz
/usr/share/man/man3/WildMidi_GetMidiOutput.3.gz
/usr/share/man/man3/WildMidi_GetOutput.3.gz
/usr/share/man/man3/WildMidi_GetString.3.gz
/usr/share/man/man3/WildMidi_GetVersion.3.gz
/usr/share/man/man3/WildMidi_Init.3.gz
/usr/share/man/man3/WildMidi_InitVIO.3.gz
/usr/share/man/man3/WildMidi_MasterVolume.3.gz
/usr/share/man/man3/WildMidi_Open.3.gz
/usr/share/man/man3/WildMidi_OpenBuffer.3.gz
/usr/share/man/man3/WildMidi_SetCvtOption.3.gz
/usr/share/man/man3/WildMidi_SetOption.3.gz
/usr/share/man/man3/WildMidi_Shutdown.3.gz
/usr/share/man/man3/WildMidi_SongSeek.3.gz

References

Summary

In this tutorial we learn how to install wildmidi-devel on CentOS 8 using yum and dnf.