• Home
Name Date Size #Lines LOC

..--

docs/03-May-2024-681561

m4/03-May-2024-468417

src/03-May-2024-51,70336,692

test/03-May-2024-37,08935,127

util/03-May-2024-3,2312,409

.travis.ymlD03-May-2024982 2625

AUTHORSD03-May-2024127 109

Android.mkD03-May-20243.1 KiB10650

COPYINGD03-May-20241.7 KiB3730

MODULE_LICENSE_MITD03-May-20240

Makefile.amD03-May-20241.9 KiB8152

NEWSD03-May-202431.4 KiB1,107801

NOTICED03-May-20241.7 KiB3730

READMED03-May-2024398 116

README.mdD03-May-2024398 116

README.pythonD03-May-2024916 2717

THANKSD03-May-2024106 87

TODOD03-May-20241.5 KiB8243

autogen.shD03-May-2024941 4231

configure.acD03-May-202413.5 KiB454392

git.mkD03-May-20249.9 KiB312210

harfbuzz.doapD03-May-2024789 2521

README

1[![Build Status](https://travis-ci.org/behdad/harfbuzz.svg)](https://travis-ci.org/behdad/harfbuzz)
2[![Coverage Status](https://img.shields.io/coveralls/behdad/harfbuzz.svg)](https://coveralls.io/r/behdad/harfbuzz)
3
4This is HarfBuzz, a text shaping library.
5
6For bug reports, mailing list, and other information please visit:
7
8  http://harfbuzz.org/
9
10For license information, see the file COPYING.
11

README.md

1[![Build Status](https://travis-ci.org/behdad/harfbuzz.svg)](https://travis-ci.org/behdad/harfbuzz)
2[![Coverage Status](https://img.shields.io/coveralls/behdad/harfbuzz.svg)](https://coveralls.io/r/behdad/harfbuzz)
3
4This is HarfBuzz, a text shaping library.
5
6For bug reports, mailing list, and other information please visit:
7
8  http://harfbuzz.org/
9
10For license information, see the file COPYING.
11

README.python

1To enable HarfBuzz bindings for Python among other languages, make sure
2you have latest version of gobject-introspection compiled, and then
3run autogen.sh (if building from git), and then:
4
5  ./configure --with-gobject --enable-introspection
6
7Make sure that gobject-introspection is enabled then in the final report.
8
9Compile and install.
10
11Make sure you have the installation lib dir in LD_LIBRARY_PATH, as needed
12for the linker to find the library.
13
14Then make sure you also have GI_TYPELIB_PATH pointing to the resulting
15$prefix/lib/girepository-* directory.
16
17Make sure you have pygobject installed.  Then check that the following
18import works in your Python interpretter:
19
20  from gi.repository import HarfBuzz
21
22If it does, you are ready to call HarfBuzz from Python!  Congratulations.
23See src/sample.py.
24
25The Python API will change.  Let us know on the mailing list if you are
26using it, and send lots of feedback.
27