NameDateSize

..10-Aug-201812 KiB

.ci/10-Aug-20184 KiB

.circleci/10-Aug-20184 KiB

.travis.yml10-Aug-20182 KiB

Android.bp10-Aug-20183.5 KiB

appveyor.yml10-Aug-20182.2 KiB

AUTHORS10-Aug-2018127

autogen.sh10-Aug-20181.1 KiB

BUILD.md10-Aug-20181.6 KiB

CMakeLists.txt10-Aug-201822.6 KiB

configure.ac10-Aug-201816.3 KiB

COPYING10-Aug-20181.7 KiB

docs/10-Aug-20184 KiB

git.mk10-Aug-201812.3 KiB

harfbuzz.doap10-Aug-2018775

m4/10-Aug-20184 KiB

Makefile.am10-Aug-20182 KiB

MODULE_LICENSE_MIT10-Aug-20180

NEWS10-Aug-201852.2 KiB

NOTICE10-Aug-20181.7 KiB

OWNERS10-Aug-201892

README10-Aug-2018771

README.android10-Aug-2018506

README.md10-Aug-2018771

README.python10-Aug-20181,008

README.version10-Aug-2018125

RELEASING.md10-Aug-20183.8 KiB

replace-enum-strings.cmake10-Aug-2018352

src/10-Aug-201812 KiB

test/10-Aug-20184 KiB

THANKS10-Aug-2018106

TODO10-Aug-20181.2 KiB

util/10-Aug-20184 KiB

README

README.android

1Harfbuzz
2
3HOW TO UPDATE
4* Check out external/harfbuzz to <checkout_dir>
5  ex: git clone https://android.googlesource.com/platform/external/harfbuzz_ng
6* Locate the commit you'd like to move.
7  ex: for 1.7.4: https://github.com/harfbuzz/harfbuzz/commit/007a2a4317227b8fb4c764c590203c85fc3da5fd
8* In <checkout_dir>, run git merge <commit_sha>
9  i.e. git merge 007a2a4317227b8fb4c764c590203c85fc3da5fd
10* Upload the changes.
11  ex: git push origin HEAD:refs/for/master
12* Gerrit will run the text related tests.
13

README.md

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