Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
.travis.yml | 08-Oct-2015 | 982 | |
Android.mk | 08-Oct-2015 | 3.1K | |
AUTHORS | 08-Oct-2015 | 127 | |
autogen.sh | 08-Oct-2015 | 941 | |
configure.ac | 08-Oct-2015 | 13.5K | |
COPYING | 08-Oct-2015 | 1.7K | |
docs/ | 08-Oct-2015 | ||
git.mk | 08-Oct-2015 | 9.9K | |
harfbuzz.doap | 08-Oct-2015 | 789 | |
m4/ | 08-Oct-2015 | ||
Makefile.am | 08-Oct-2015 | 1.9K | |
MODULE_LICENSE_MIT | 08-Oct-2015 | 0 | |
NEWS | 08-Oct-2015 | 31.4K | |
NOTICE | 08-Oct-2015 | 1.7K | |
README | 08-Oct-2015 | 398 | |
README.md | 08-Oct-2015 | 398 | |
README.python | 08-Oct-2015 | 916 | |
src/ | 08-Oct-2015 | ||
test/ | 08-Oct-2015 | ||
THANKS | 08-Oct-2015 | 106 | |
TODO | 08-Oct-2015 | 1.5K | |
util/ | 08-Oct-2015 |
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 4 This is HarfBuzz, a text shaping library. 5 6 For bug reports, mailing list, and other information please visit: 7 8 http://harfbuzz.org/ 9 10 For license information, see the file COPYING. 11
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 4 This is HarfBuzz, a text shaping library. 5 6 For bug reports, mailing list, and other information please visit: 7 8 http://harfbuzz.org/ 9 10 For license information, see the file COPYING. 11
1 To enable HarfBuzz bindings for Python among other languages, make sure 2 you have latest version of gobject-introspection compiled, and then 3 run autogen.sh (if building from git), and then: 4 5 ./configure --with-gobject --enable-introspection 6 7 Make sure that gobject-introspection is enabled then in the final report. 8 9 Compile and install. 10 11 Make sure you have the installation lib dir in LD_LIBRARY_PATH, as needed 12 for the linker to find the library. 13 14 Then make sure you also have GI_TYPELIB_PATH pointing to the resulting 15 $prefix/lib/girepository-* directory. 16 17 Make sure you have pygobject installed. Then check that the following 18 import works in your Python interpretter: 19 20 from gi.repository import HarfBuzz 21 22 If it does, you are ready to call HarfBuzz from Python! Congratulations. 23 See src/sample.py. 24 25 The Python API will change. Let us know on the mailing list if you are 26 using it, and send lots of feedback. 27