How To Install mingw64-libconfuse on Fedora 36

In this tutorial we learn how to install mingw64-libconfuse in Fedora 36. mingw64-libconfuse is MinGW configuration file parser library

Introduction

In this tutorial we learn how to install mingw64-libconfuse on Fedora 36.

What is mingw64-libconfuse

libConfuse is a configuration file parser library, licensed under the terms of the ISC license, and written in C. It supports sections and (lists of) values (strings, integers, floats, booleans or other sections), as well as some other features (such as single/double-quoted strings, environment variable expansion, functions and nested include statements). It makes it very easy to add configuration file capability to a program using a simple API. The goal of libConfuse is not to be the configuration file parser library with a gazillion of features. Instead, it aims to be easy to use and quick to integrate with your code.

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

Install mingw64-libconfuse on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install mingw64-libconfuse

Install mingw64-libconfuse on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install mingw64-libconfuse

How To Uninstall mingw64-libconfuse on Fedora 36

To uninstall only the mingw64-libconfuse package we can use the following command:

sudo dnf remove mingw64-libconfuse

mingw64-libconfuse Package Contents on Fedora 36

/usr/share/doc/mingw64-libconfuse
/usr/share/doc/mingw64-libconfuse/AUTHORS
/usr/share/doc/mingw64-libconfuse/README.md
/usr/share/licenses/mingw64-libconfuse
/usr/share/licenses/mingw64-libconfuse/LICENSE
/usr/x86_64-w64-mingw32/sys-root/mingw/bin/libconfuse-2.dll
/usr/x86_64-w64-mingw32/sys-root/mingw/include/confuse.h
/usr/x86_64-w64-mingw32/sys-root/mingw/lib/libconfuse.dll.a
/usr/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig/libconfuse.pc
/usr/x86_64-w64-mingw32/sys-root/mingw/share/locale/de/LC_MESSAGES/confuse.mo
/usr/x86_64-w64-mingw32/sys-root/mingw/share/locale/fr/LC_MESSAGES/confuse.mo
/usr/x86_64-w64-mingw32/sys-root/mingw/share/locale/sv/LC_MESSAGES/confuse.mo

References

Summary

In this tutorial we learn how to install mingw64-libconfuse on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).