How To Install clearsilver-devel on CentOS 8

clearsilver-devel is ClearSilver development package

Introduction

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

What is clearsilver-devel

This package provides needed files to develop extensions to ClearSilver.

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

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

sudo dnf -y install clearsilver-devel

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

sudo yum -y install clearsilver-devel

How To Uninstall clearsilver-devel on CentOS 8

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

sudo dnf remove clearsilver-devel

clearsilver-devel Package Contents on CentOS 8

/usr/include/ClearSilver
/usr/include/ClearSilver/ClearSilver.h
/usr/include/ClearSilver/cgi
/usr/include/ClearSilver/cgi/cgi.h
/usr/include/ClearSilver/cgi/cgiwrap.h
/usr/include/ClearSilver/cgi/date.h
/usr/include/ClearSilver/cgi/html.h
/usr/include/ClearSilver/cs
/usr/include/ClearSilver/cs/cs.h
/usr/include/ClearSilver/cs_config.h
/usr/include/ClearSilver/util
/usr/include/ClearSilver/util/dict.h
/usr/include/ClearSilver/util/filter.h
/usr/include/ClearSilver/util/neo_date.h
/usr/include/ClearSilver/util/neo_err.h
/usr/include/ClearSilver/util/neo_files.h
/usr/include/ClearSilver/util/neo_hash.h
/usr/include/ClearSilver/util/neo_hdf.h
/usr/include/ClearSilver/util/neo_misc.h
/usr/include/ClearSilver/util/neo_net.h
/usr/include/ClearSilver/util/neo_rand.h
/usr/include/ClearSilver/util/neo_server.h
/usr/include/ClearSilver/util/neo_str.h
/usr/include/ClearSilver/util/rcfs.h
/usr/include/ClearSilver/util/skiplist.h
/usr/include/ClearSilver/util/ulist.h
/usr/include/ClearSilver/util/ulocks.h
/usr/include/ClearSilver/util/wildmat.h
/usr/lib64/libneo_cgi.a
/usr/lib64/libneo_cs.a
/usr/lib64/libneo_utl.a
/usr/share/doc/clearsilver-devel
/usr/share/doc/clearsilver-devel/CS_LICENSE
/usr/share/doc/clearsilver-devel/LICENSE

References

Summary

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