mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-26 10:52:09 +08:00
It had to be manually installed before, now it seems to be present. See https://github.com/actions/virtual-environments/issues/9 Fixes #3812
34 lines
569 B
Bash
Executable file
34 lines
569 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e -x
|
|
|
|
# Update package lists
|
|
apt-get update
|
|
|
|
# Install dependencies
|
|
apt-get install -y \
|
|
gir1.2-pango-1.0 \
|
|
gettext \
|
|
git \
|
|
git-svn \
|
|
gnupg \
|
|
subversion \
|
|
postgresql-client \
|
|
pkg-config \
|
|
python3-dev \
|
|
libxml2-dev \
|
|
libacl1-dev \
|
|
libxmlsec1-dev \
|
|
libleptonica-dev \
|
|
libtesseract-dev \
|
|
libsasl2-dev \
|
|
libldap2-dev \
|
|
libssl-dev \
|
|
libffi-dev \
|
|
libenchant1c2a \
|
|
libgirepository1.0-dev \
|
|
libcairo-dev \
|
|
liblz4-dev \
|
|
gir1.2-pango-1.0 \
|
|
cython \
|
|
tesseract-ocr
|