How To Install lasi on Fedora 34
Introduction
In this tutorial we learn how to install lasi
on Fedora 34.
What is lasi
LASi is a library written by Larry Siden that provides a C++ stream output interface ( with operator « ) for creating Postscript documents that can contain characters from any of the scripts and symbol blocks supported in Unicode and by Owen Taylor’s Pango layout engine. The library accommodates right-to-left scripts such as Arabic and Hebrew as easily as left-to-right scripts. Indic and Indic-derived Complex Text Layout (CTL) scripts, such as Devanagari, Thai, Lao, and Tibetan are supported to the extent provided by Pango and by the OpenType fonts installed on your system. All of this is provided without need for any special configuration or layout calculation on the programmer’s part. Although the capability to produce Unicode-based multilingual Postscript documents exists in large Open Source application framework libraries such as GTK+, QT, and KDE, LASi was designed for projects which require the ability to produce Postscript independent of any one application framework. lasi 1.1.3 6.fc34 x86_64 56 k lasi-1.1.3-6.fc34.src.rpm fedora C++ library for creating Postscript documents http LGPLv2+ LASi is a library written by Larry Siden that provides a C++ stream output interface ( with operator « ) for creating Postscript documents that can contain characters from any of the scripts and symbol blocks supported in Unicode and by Owen Taylor’s Pango layout engine. The library accommodates right-to-left scripts such as Arabic and Hebrew as easily as left-to-right scripts. Indic and Indic-derived Complex Text Layout (CTL) scripts, such as Devanagari, Thai, Lao, and Tibetan are supported to the extent provided by Pango and by the OpenType fonts installed on your system. All of this is provided without need for any special configuration or layout calculation on the programmer’s part. Although the capability to produce Unicode-based multilingual Postscript documents exists in large Open Source application framework libraries such as GTK+, QT, and KDE, LASi was designed for projects which require the ability to produce Postscript independent of any one application framework.
We can use yum
or dnf
to install lasi
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install lasi.
Install lasi 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 lasi
using dnf
by running the following command:
sudo dnf -y install lasi
Install lasi 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 lasi
using yum
by running the following command:
sudo yum -y install lasi
How To Uninstall lasi on Fedora 34
To uninstall only the lasi
package we can use the following command:
sudo dnf remove lasi
lasi Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/87
/usr/lib/.build-id/87/ac943a747e282e0011559d66c8a4b71cff6f75
/usr/lib64/libLASi.so.2
/usr/lib64/libLASi.so.2.0.0
/usr/share/doc/lasi
/usr/share/doc/lasi/AUTHORS
/usr/share/doc/lasi/COPYING
/usr/share/doc/lasi/ChangeLog.release
/usr/share/doc/lasi/README
/usr/lib/.build-id
/usr/lib/.build-id/88
/usr/lib/.build-id/88/95945081bcfd21dc6b422eac5c91ddfbddb224
/usr/lib/libLASi.so.2
/usr/lib/libLASi.so.2.0.0
/usr/share/doc/lasi
/usr/share/doc/lasi/AUTHORS
/usr/share/doc/lasi/COPYING
/usr/share/doc/lasi/ChangeLog.release
/usr/share/doc/lasi/README
References
- [lasi website](http://www.unifont.org/lasi/ http://www.unifont.org/lasi/)
Summary
In this tutorial we learn how to install lasi
on Fedora 34 using yum and dnf.