File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
pythonforandroid/recipes/harfbuzz Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ class HarfbuzzRecipe(Recipe):
20
20
https://sourceforge.net/projects/freetype/files/freetype2/2.5.3/
21
21
"""
22
22
23
- version = '0.9.40 '
24
- url = 'http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-{version}.tar.bz2 ' # noqa
23
+ version = '2.6.4 '
24
+ url = 'http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-{version}.tar.xz ' # noqa
25
25
opt_depends = ['freetype' ]
26
26
built_libraries = {'libharfbuzz.so' : 'src/.libs' }
27
27
@@ -50,15 +50,17 @@ def build_arch(self, arch):
50
50
configure = sh .Command ('./configure' )
51
51
shprint (
52
52
configure ,
53
- '--without-icu' ,
54
53
'--host={}' .format (arch .command_prefix ),
55
54
'--prefix={}' .format (self .get_build_dir (arch .arch )),
56
55
'--with-freetype={}' .format (
57
56
'yes'
58
57
if 'freetype' in self .ctx .recipe_build_order
59
58
else 'no'
60
59
),
61
- '--without-glib' ,
60
+ '--with-icu=no' ,
61
+ '--with-cairo=no' ,
62
+ '--with-fontconfig=no' ,
63
+ '--with-glib=no' ,
62
64
_env = env ,
63
65
)
64
66
shprint (sh .make , '-j' , str (cpu_count ()), _env = env )
You can’t perform that action at this time.
0 commit comments