How To Install teckit on Fedora 34

teckit is Conversion library and mapping compiler Conversion library and mapping compiler

Introduction

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

What is teckit

TECkit is a low-level toolkit intended to be used by other applications that need to perform encoding conversions (e.g., when importing legacy data into a Unicode-based application). The primary component of the TECkit package is therefore a library that performs conversions; this is the “TECkit engine”. The engine relies on mapping tables in a specific binary format (for which documentation is available); there is a compiler that creates such tables from a human-readable mapping description (a simple text file). teckit 2.5.9 6.fc34 x86_64 463 k teckit-2.5.9-6.fc34.src.rpm fedora Conversion library and mapping compiler https (LGPLv2+ or CPL) and (LGPLv2+ or GPLv2+ or MPLv2.0 or MPLv1.1) TECkit is a low-level toolkit intended to be used by other applications that need to perform encoding conversions (e.g., when importing legacy data into a Unicode-based application). The primary component of the TECkit package is therefore a library that performs conversions; this is the “TECkit engine”. The engine relies on mapping tables in a specific binary format (for which documentation is available); there is a compiler that creates such tables from a human-readable mapping description (a simple text file).

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

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

sudo dnf -y install teckit

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

sudo yum -y install teckit

How To Uninstall teckit on Fedora 34

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

sudo dnf remove teckit

teckit Package Contents on Fedora 34

/usr/bin/sfconv
/usr/bin/teckit_compile
/usr/bin/txtconv
/usr/lib/.build-id
/usr/lib/.build-id/0d
/usr/lib/.build-id/0d/353bbb61bad96f1d1f3b827b6d90a493677666
/usr/lib/.build-id/45
/usr/lib/.build-id/45/74800a78297c3a22940c5bb2bfa903065763e3
/usr/lib/.build-id/4e
/usr/lib/.build-id/4e/53a0516f80d22ec86a7df864c8bb9bff90d704
/usr/lib/.build-id/71
/usr/lib/.build-id/71/efa5707d1d644f54dfbc2b8247ad98f4553273
/usr/lib/.build-id/eb
/usr/lib/.build-id/eb/0babfd535298ab2ca11c02724267c59bf1f768
/usr/lib/libTECkit.so.0
/usr/lib/libTECkit.so.0.0.0
/usr/lib/libTECkit_Compiler.so.0
/usr/lib/libTECkit_Compiler.so.0.0.0
/usr/share/doc/teckit
/usr/share/doc/teckit/AUTHORS
/usr/share/doc/teckit/NEWS
/usr/share/doc/teckit/README
/usr/share/licenses/teckit
/usr/share/licenses/teckit/LICENSING.txt
/usr/share/licenses/teckit/License_CPLv05.txt
/usr/share/licenses/teckit/License_LGPLv21.txt
/usr/share/man/man1/sfconv.1.gz
/usr/share/man/man1/teckit_compile.1.gz
/usr/share/man/man1/txtconv.1.gz
/usr/bin/sfconv
/usr/bin/teckit_compile
/usr/bin/txtconv
/usr/lib/.build-id
/usr/lib/.build-id/72
/usr/lib/.build-id/72/a01d41b0da8584d9fc7264f5901dd34c89a9e3
/usr/lib/.build-id/9a
/usr/lib/.build-id/9a/d8b3a54ec2570d09ee9285312493846a2aeb2c
/usr/lib/.build-id/d0
/usr/lib/.build-id/d0/0db94e9257c2e79f5780292e18b70ffed84206
/usr/lib/.build-id/dc
/usr/lib/.build-id/dc/790339f504087fdf2e170c75f8298e48fad16c
/usr/lib/.build-id/fe
/usr/lib/.build-id/fe/3e9f11d160e70343123d69930c12fbe3b883db
/usr/lib64/libTECkit.so.0
/usr/lib64/libTECkit.so.0.0.0
/usr/lib64/libTECkit_Compiler.so.0
/usr/lib64/libTECkit_Compiler.so.0.0.0
/usr/share/doc/teckit
/usr/share/doc/teckit/AUTHORS
/usr/share/doc/teckit/NEWS
/usr/share/doc/teckit/README
/usr/share/licenses/teckit
/usr/share/licenses/teckit/LICENSING.txt
/usr/share/licenses/teckit/License_CPLv05.txt
/usr/share/licenses/teckit/License_LGPLv21.txt
/usr/share/man/man1/sfconv.1.gz
/usr/share/man/man1/teckit_compile.1.gz
/usr/share/man/man1/txtconv.1.gz

References

Summary

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