And now Ubuntu needs freetype-dev explicitly installed for some reason

This commit is contained in:
Kovid Goyal 2025-01-13 21:48:00 +05:30
parent c7f2de3902
commit fe7536dd2a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -115,7 +115,7 @@ def install_linux_deps():
run('sudo', 'apt-get', 'update', '-y') run('sudo', 'apt-get', 'update', '-y')
# run('sudo', 'apt-get', 'upgrade', '-y') # run('sudo', 'apt-get', 'upgrade', '-y')
run('sudo', 'apt-get', 'install', '-y', run('sudo', 'apt-get', 'install', '-y',
'gettext', 'libgl1-mesa-dev', 'libxkbcommon-dev', 'libxkbcommon-x11-dev', 'pulseaudio', 'libasound2t64', 'libflite1', 'libspeechd2') 'gettext', 'libgl1-mesa-dev', 'libxkbcommon-dev', 'libxkbcommon-x11-dev', 'libfreetype-dev', 'pulseaudio', 'libasound2t64', 'libflite1', 'libspeechd2')
def get_tx(): def get_tx():