diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2019-08-14 22:15:47 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2019-08-14 22:15:47 +0000 |
commit | c34a1db4898940561d930b352086459acb246918 (patch) | |
tree | e8eed46f0b1fadd8924d05712b0c5d4f28194058 /Build/source/libs/harfbuzz/harfbuzz-src/README.python.md | |
parent | 5630d54170b9d8a8aabf2ad7e84c92840b86160d (diff) |
harfbuzz 2.6.0
git-svn-id: svn://tug.org/texlive/trunk@51882 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/harfbuzz/harfbuzz-src/README.python.md')
-rw-r--r-- | Build/source/libs/harfbuzz/harfbuzz-src/README.python.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/libs/harfbuzz/harfbuzz-src/README.python.md b/Build/source/libs/harfbuzz/harfbuzz-src/README.python.md index 7cf091a09b1..d9aaf898717 100644 --- a/Build/source/libs/harfbuzz/harfbuzz-src/README.python.md +++ b/Build/source/libs/harfbuzz/harfbuzz-src/README.python.md @@ -6,21 +6,21 @@ you can install that this way: sudo apt-get install libgirepository1.0-dev ``` -And then run autogen.sh (if building from git), and then: +And then run `autogen.sh` (if building from git), and then: ```bash ./configure --with-gobject --enable-introspection ``` -Make sure that gobject-introspection is enabled then in the final report. +Make sure that gobject-introspection is reported enabled then in the `configure` script output. Compile and install. -Make sure you have the installation lib dir in LD_LIBRARY_PATH, as needed +Make sure you have the installation lib dir in `LD_LIBRARY_PATH`, as needed for the linker to find the library. -Then make sure you also have GI_TYPELIB_PATH pointing to the resulting -$prefix/lib/girepository-* directory. +Then make sure you also have `GI_TYPELIB_PATH` pointing to the resulting +`$prefix/lib/girepository-*` directory. Make sure you have pygobject installed. Then check that the following import works in your Python interpreter: @@ -30,7 +30,7 @@ from gi.repository import HarfBuzz ``` If it does, you are ready to call HarfBuzz from Python! Congratulations. -See src/sample.py. +See [`src/sample.py`](src/sample.py). The Python API will change. Let us know on the mailing list if you are using it, and send lots of feedback. |