Gucharmap-13.0.8

Introduction to Gucharmap

Gucharmap is a Unicode character map and font viewer. It allows you to browse through all the available Unicode characters and categories for the installed fonts, and to examine their detailed properties. It is an easy way to find the character you might only know by its Unicode name or code point.

This package is known to build and work properly using an LFS-11.0 platform.

Package Information

Additional Downloads

Unicode Character Database files

Gucharmap Dependencies

Required

desktop-file-utils-0.26, gsettings-desktop-schemas-40.0, GTK+-3.24.30, itstool-2.0.6, and UnZip-6.0

Recommended

Optional

appstream-glib and GTK-Doc-1.33.2

User Notes: https://wiki.linuxfromscratch.org/blfs/wiki/gucharmap

Installation of Gucharmap

Install Gucharmap by running the following commands:

mkdir build                   &&
cd    build                   &&
mkdir ucd                     &&
pushd ucd                     &&
  unzip ../../../UCD.zip      &&
  cp -v ../../../Unihan.zip . &&
popd                          &&

meson --prefix=/usr         \
      --strip               \
      --buildtype=release   \
      -Ducd_path=./ucd      \
      -Ddocs=false ..       &&
ninja

This package does not have a testsuite.

Now, as the root user:

rm  -fv /usr/share/glib-2.0/schemas/org.gnome.Charmap.enums.xml &&
ninja install

Command Explanations

--strip: Although the package defaults to a release build without debug information, without this switch there will be some debug information in the binaries.

-Ducd_path=./ucd: This points to where the extracted main Unicode data files, and the zipped Unihan archive can be found.

rm -fv /usr/share/glib-2.0/schemas/org.gnome.Charmap.enums.xml: Old versions of this package installed an obsolete file that prevents the program from running, as if the main schema has not been installed. Forcibly removing works even if the old file is not present.

-Ddocs=false: This allows the package to build even if gtk-doc has not been installed. Remove this if you have installed that and wish to build the documentation.

-Dgir=false: Use this if you have not installed gobject-introspection-1.68.0.

-Dvapi=false: Use this if you have not installed Vala-0.52.5.

Contents

Installed Program: gucharmap
Installed Library: libgucharmap_2_90.so
Installed Directories: /usr/include/gucharmap-2.90 and /usr/share/help/*/gucharmap

Short Descriptions

gucharmap

is a Unicode character map and font viewer

libgucharmap_2_90.so

contains the Gucharmap API functions

Last updated on