NameDateSize

..11-Jun-201812 KiB

.ci/11-Jun-20184 KiB

.travis.yml11-Jun-20182.3 KiB

Android.bp11-Jun-20183.5 KiB

appveyor.yml11-Jun-20182.3 KiB

AUTHORS11-Jun-2018127

autogen.sh11-Jun-20181.1 KiB

BUILD.md11-Jun-20181.5 KiB

configure.ac11-Jun-201816.2 KiB

COPYING11-Jun-20181.7 KiB

docs/11-Jun-20184 KiB

git.mk11-Jun-201810.9 KiB

harfbuzz.doap11-Jun-2018789

m4/11-Jun-20184 KiB

Makefile.am11-Jun-20182 KiB

MODULE_LICENSE_MIT11-Jun-20180

NEWS11-Jun-201846.2 KiB

NOTICE11-Jun-20181.7 KiB

OWNERS11-Jun-201892

README11-Jun-2018604

README.md11-Jun-2018604

README.python11-Jun-20181,008

README.version11-Jun-2018116

src/11-Jun-201812 KiB

test/11-Jun-20184 KiB

THANKS11-Jun-2018106

TODO11-Jun-20181.2 KiB

util/11-Jun-20184 KiB

win32/11-Jun-20184 KiB

README

1[![Build Status](https://travis-ci.org/behdad/harfbuzz.svg)](https://travis-ci.org/behdad/harfbuzz)
2[![Build Status](https://ci.appveyor.com/api/projects/status/4oaq58ns2h0m2soa?svg=true)](https://ci.appveyor.com/project/behdad/harfbuzz)
3[![Coverage Status](https://img.shields.io/coveralls/behdad/harfbuzz.svg)](https://coveralls.io/r/behdad/harfbuzz)
4[ABI Tracker](http://abi-laboratory.pro/tracker/timeline/harfbuzz/)
5
6This is HarfBuzz, a text shaping library.
7
8For bug reports, mailing list, and other information please visit:
9
10  http://harfbuzz.org/
11
12For license information, see the file COPYING.
13

README.md

1[![Build Status](https://travis-ci.org/behdad/harfbuzz.svg)](https://travis-ci.org/behdad/harfbuzz)
2[![Build Status](https://ci.appveyor.com/api/projects/status/4oaq58ns2h0m2soa?svg=true)](https://ci.appveyor.com/project/behdad/harfbuzz)
3[![Coverage Status](https://img.shields.io/coveralls/behdad/harfbuzz.svg)](https://coveralls.io/r/behdad/harfbuzz)
4[ABI Tracker](http://abi-laboratory.pro/tracker/timeline/harfbuzz/)
5
6This is HarfBuzz, a text shaping library.
7
8For bug reports, mailing list, and other information please visit:
9
10  http://harfbuzz.org/
11
12For license information, see the file COPYING.
13

README.python

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

README.version