• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

docs/22-Nov-2023-681561

m4/22-Nov-2023-468417

src/22-Nov-2023-51,70336,692

test/22-Nov-2023-37,08935,127

util/22-Nov-2023-3,2312,409

.gitD01-Jan-19700

.travis.ymlD22-Nov-2023982 2625

AUTHORSD22-Nov-2023127 109

Android.mkD22-Nov-20233.1 KiB10650

COPYINGD22-Nov-20231.7 KiB3730

MODULE_LICENSE_MITD22-Nov-20230

Makefile.amD22-Nov-20231.9 KiB8152

NEWSD22-Nov-202331.4 KiB1,107801

NOTICED22-Nov-20231.7 KiB3730

READMED22-Nov-2023398 116

README.mdD22-Nov-2023398 116

README.pythonD22-Nov-2023916 2717

THANKSD22-Nov-2023106 87

TODOD22-Nov-20231.5 KiB8243

autogen.shD22-Nov-2023941 4231

configure.acD22-Nov-202313.5 KiB454392

git.mkD22-Nov-20239.9 KiB312210

harfbuzz.doapD22-Nov-2023789 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